-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[*] Improved the add entry dialog and added support for splitter entry. #90
Conversation
[*] Fixed some bugs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good!
Small issue with the currency part though.
And also small alignment issue.
|
||
this.add(new ActionLabel("Description:")); | ||
this.descriptionField = new ActionTextField(20); | ||
this.add(this.descriptionField); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Future TODO:
- Add a use case to get the parent entry data to fill the inherited attributes in a splitter entry.
|
||
this.result = JOptionPane.showConfirmDialog(this, insertEntryDialog, | ||
"Information about the new entry", JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE); | ||
initDialog(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Convention: Add this.
before using an instance method.
[*] Fixed some bugs.