Created
May 25, 2011 17:01
-
-
Save andyscott/991371 to your computer and use it in GitHub Desktop.
Added names to buttons created via createOKCancelButtonPanel()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: src/com/jidesoft/dialog/StandardDialog.java | |
=================================================================== | |
--- src/com/jidesoft/dialog/StandardDialog.java (revision 1760) | |
+++ src/com/jidesoft/dialog/StandardDialog.java (working copy) | |
@@ -31,6 +31,11 @@ import java.beans.PropertyChangeListener; | |
* createContentPanel() | |
*/ | |
abstract public class StandardDialog extends JDialog implements ButtonNames { | |
+ /** | |
+ * | |
+ */ | |
+ private static final long serialVersionUID = 9114102922553383723L; | |
+ | |
private boolean _lazyConstructorCalled = false; | |
protected StandardDialogPane _standardDialogPane; | |
@@ -338,8 +343,11 @@ abstract public class StandardDialog extends JDialog implements ButtonNames { | |
} | |
}; | |
JButton okButton = new JButton(okAction); | |
+ okButton.setName(OK); | |
buttonPanel.addButton(okButton, ButtonPanel.AFFIRMATIVE_BUTTON); | |
- buttonPanel.addButton(new JButton(cancelAction), ButtonPanel.CANCEL_BUTTON); | |
+ JButton cancelButton = new JButton(cancelAction); | |
+ cancelButton.setName(CANCEL); | |
+ buttonPanel.addButton(cancelButton, ButtonPanel.CANCEL_BUTTON); | |
setDefaultCancelAction(cancelAction); | |
setDefaultAction(okAction); | |
@@ -389,7 +397,12 @@ abstract public class StandardDialog extends JDialog implements ButtonNames { | |
} | |
protected class DefaultStandardDialogPane extends StandardDialogPane { | |
- @Override | |
+ /** | |
+ * | |
+ */ | |
+ private static final long serialVersionUID = -6976658176495038104L; | |
+ | |
+ @Override | |
public JComponent createBannerPanel() { | |
return StandardDialog.this.createBannerPanel(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment