use of com.servoy.j2db.util.gui.KeyReleaseActionJButton in project servoy-client by Servoy.
the class SwingForm method getNoDoClickJButton.
private JButton getNoDoClickJButton(String text, int mnemonic) {
KeyReleaseActionJButton b = new KeyReleaseActionJButton();
b.setText(text);
b.setMnemonic(mnemonic);
// $NON-NLS-1$
b.setName("OptionPane.button");
return b;
}
Aggregations