Lines Matching refs:aButton
73 JButton aButton; in Layout() local
75 aButton = new JButton( "Select" ); in Layout()
76 aButton.setActionCommand( "Select" ); in Layout()
77 aButton.addActionListener( this ); in Layout()
78 aButtons.add( aButton ); in Layout()
80 aButton = new JButton( "Deselect" ); in Layout()
81 aButton.setActionCommand( "Deselect" ); in Layout()
82 aButton.addActionListener( this ); in Layout()
83 aButtons.add( aButton ); in Layout()
85 aButton = new JButton( "Select all" ); in Layout()
86 aButton.setActionCommand( "Select all" ); in Layout()
87 aButton.addActionListener( this ); in Layout()
88 aButtons.add( aButton ); in Layout()
90 aButton = new JButton( "Clear Selection" ); in Layout()
91 aButton.setActionCommand( "Clear Selection" ); in Layout()
92 aButton.addActionListener( this ); in Layout()
93 aButtons.add( aButton ); in Layout()
95 aButton = new JButton( "Close" ); in Layout()
96 aButton.setActionCommand( "Close" ); in Layout()
97 aButton.addActionListener( this ); in Layout()
98 aButtons.add( aButton ); in Layout()