Java Code Examples for java.awt.Button#setActionCommand()
The following examples show how to use
java.awt.Button#setActionCommand() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: HighResTest.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public TestDialog(Frame frame, String name) { super(frame, name); int scrollBoth = TextArea.SCROLLBARS_BOTH; instructionsText = new TextArea("", 15, maxStringLength, scrollBoth); add("North", instructionsText); messageText = new TextArea("", 5, maxStringLength, scrollBoth); add("Center", messageText); passB = new Button("pass"); passB.setActionCommand("pass"); passB.addActionListener(this); buttonP.add("East", passB); failB = new Button("fail"); failB.setActionCommand("fail"); failB.addActionListener(this); buttonP.add("West", failB); add("South", buttonP); pack(); show(); }
Example 2
Source File: DragEventSource.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public TestDialog( Frame frame, String name ) { super( frame, name ); int scrollBoth = TextArea.SCROLLBARS_BOTH; instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth ); add( "North", instructionsText ); messageText = new TextArea( "", 5, maxStringLength, scrollBoth ); add("Center", messageText); passB = new Button( "pass" ); passB.setActionCommand( "pass" ); passB.addActionListener( this ); buttonP.add( "East", passB ); failB = new Button( "fail" ); failB.setActionCommand( "fail" ); failB.addActionListener( this ); buttonP.add( "West", failB ); add( "South", buttonP ); pack(); setVisible(true); }
Example 3
Source File: ScrollSelectionTest.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public TestDialog(Frame frame, String name) { super(frame, name); int scrollBoth = TextArea.SCROLLBARS_BOTH; instructionsText = new TextArea("", 15, maxStringLength, scrollBoth); add("North", instructionsText); messageText = new TextArea("", 5, maxStringLength, scrollBoth); add("Center", messageText); buttonP = new Panel(); passB = new Button("pass"); passB.setActionCommand("pass"); passB.addActionListener(this); buttonP.add("East", passB); failB = new Button("Fail"); failB.setActionCommand("fail"); failB.addActionListener(this); buttonP.add("West", failB); add("South", buttonP); pack(); setVisible(true); }
Example 4
Source File: AltGraphModifierTest.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public TestDialog(Frame frame, String name) { super(frame, name); int scrollBoth = TextArea.SCROLLBARS_BOTH; instructionsText = new TextArea("", 15, maxStringLength, scrollBoth); add("North", instructionsText); messageText = new TextArea("", 5, maxStringLength, scrollBoth); add("Center", messageText); buttonP = new Panel(); failB = new Button("Fail"); failB.setActionCommand("fail"); failB.addActionListener(this); buttonP.add("Center", failB); add("South", buttonP); pack(); setVisible(true); }
Example 5
Source File: Test6991580.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public TestDialog( Frame frame, String name ) { super( frame, name ); int scrollBoth = TextArea.SCROLLBARS_BOTH; instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth ); add( "North", instructionsText ); messageText = new TextArea( "", 5, maxStringLength, scrollBoth ); add("Center", messageText); passB = new Button( "pass" ); passB.setActionCommand( "pass" ); passB.addActionListener( this ); buttonP.add( "East", passB ); failB = new Button( "fail" ); failB.setActionCommand( "fail" ); failB.addActionListener( this ); buttonP.add( "West", failB ); add( "South", buttonP ); pack(); show(); }
Example 6
Source File: Test6411624.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public TestDialog( Frame frame, String name ) { super( frame, name ); int scrollBoth = TextArea.SCROLLBARS_BOTH; instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth ); add( "North", instructionsText ); messageText = new TextArea( "", 5, maxStringLength, scrollBoth ); add("Center", messageText); passB = new Button( "pass" ); passB.setActionCommand( "pass" ); passB.addActionListener( this ); buttonP.add( "East", passB ); failB = new Button( "fail" ); failB.setActionCommand( "fail" ); failB.addActionListener( this ); buttonP.add( "West", failB ); add( "South", buttonP ); pack(); show(); }
Example 7
Source File: Test4218609.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public TestDialog( Frame frame, String name ) { super( frame, name ); int scrollBoth = TextArea.SCROLLBARS_BOTH; instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth ); add( "North", instructionsText ); messageText = new TextArea( "", 5, maxStringLength, scrollBoth ); add("Center", messageText); passB = new Button( "pass" ); passB.setActionCommand( "pass" ); passB.addActionListener( this ); buttonP.add( "East", passB ); failB = new Button( "fail" ); failB.setActionCommand( "fail" ); failB.addActionListener( this ); buttonP.add( "West", failB ); add( "South", buttonP ); pack(); show(); }
Example 8
Source File: Test5032020.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public TestDialog( Frame frame, String name ) { super( frame, name ); int scrollBoth = TextArea.SCROLLBARS_BOTH; instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth ); add( "North", instructionsText ); messageText = new TextArea( "", 5, maxStringLength, scrollBoth ); add("Center", messageText); passB = new Button( "pass" ); passB.setActionCommand( "pass" ); passB.addActionListener( this ); buttonP.add( "East", passB ); failB = new Button( "fail" ); failB.setActionCommand( "fail" ); failB.addActionListener( this ); buttonP.add( "West", failB ); add( "South", buttonP ); pack(); show(); }
Example 9
Source File: Test4997635.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public TestDialog( Frame frame, String name ) { super( frame, name ); int scrollBoth = TextArea.SCROLLBARS_BOTH; instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth ); add( "North", instructionsText ); messageText = new TextArea( "", 5, maxStringLength, scrollBoth ); add("Center", messageText); passB = new Button( "pass" ); passB.setActionCommand( "pass" ); passB.addActionListener( this ); buttonP.add( "East", passB ); failB = new Button( "fail" ); failB.setActionCommand( "fail" ); failB.addActionListener( this ); buttonP.add( "West", failB ); add( "South", buttonP ); pack(); show(); }
Example 10
Source File: TestPageDlgFrameAssociation.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
private static void frameTest() { Panel panel =new Panel(); print = new Button("PageDialog"); print.setActionCommand("PageDialog"); print.addActionListener((e) -> { PrinterJob job = PrinterJob.getPrinterJob(); PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet(); t.start(); start = true; PageFormat pf = job.pageDialog(aset); }); panel.add(print); frame = new Frame("Test Frame"); frame.setLayout (new BorderLayout ()); frame.add(panel,"South"); frame.pack(); frame.setVisible(true); t = new Thread (() -> { if (start) { try { Thread.sleep(5000); } catch (InterruptedException ex) {} frame.dispose(); } }); }
Example 11
Source File: TestPrintDlgFrameAssociation.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
private static void frameTest() { Panel panel =new Panel(); print = new Button("PrintDialog"); print.setActionCommand("PrintDialog"); print.addActionListener((e) -> { PrinterJob job = PrinterJob.getPrinterJob(); PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet(); t.start(); start = true; job.printDialog(aset); }); panel.add(print); frame = new Frame("Test Frame"); frame.setLayout (new BorderLayout ()); frame.add(panel,"South"); frame.pack(); frame.setVisible(true); t = new Thread (() -> { if (start) { try { Thread.sleep(5000); } catch (InterruptedException ex) {} frame.dispose(); } }); }
Example 12
Source File: DisabledUndoTest.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
public TestDialog(Frame frame, String name) { super(frame, name); int scrollBoth = TextArea.SCROLLBARS_BOTH; instructionsText = new TextArea("", 15, maxStringLength, scrollBoth); add("North", instructionsText); messageText = new TextArea("", 5, maxStringLength, scrollBoth); add("Center", messageText); buttonP = new Panel(); failB = new Button("Fail"); failB.setActionCommand("fail"); failB.addActionListener(this); passB = new Button("Pass"); buttonP.add(passB); buttonP.add(failB); passB.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent ae) { DisabledUndoTest.pass(); } }); add("South", buttonP); pack(); setVisible(true); }
Example 13
Source File: Awt.java From pdfxtk with Apache License 2.0 | 4 votes |
public static Button newButton(String label, String command, ActionListener listener) { Button result = new Button(label); result.addActionListener(listener); result.setActionCommand(command); return result; }