299300301302303304305306307308309
public void actionPerformed(ActionEvent evt) { action.setEnabled(!action.isEnabled()); } }); md.showDialog(button); } }); p.add(testButton); testButton = new JButton("createCustomDialog w/ ActionCommands, No Cancel");
359360361362363364365366367368369
} }; ModalDialog md = ModalDialog.createOKDialog("ActionCommand Test"); md.getDefaultAction().setCommand(okPassword); md.showDialog(p); } }); p.add(testButton); // Install the window's menu bar.