Java AbstractButton .setSelected (boolean b)
Syntax
AbstractButton.setSelected(boolean b) has the following syntax.
public void setSelected(boolean b)
Example
In the following code shows how to use AbstractButton.setSelected(boolean b) method.
/* w ww . j a v a 2 s .co m*/
import javax.swing.AbstractButton;
import javax.swing.JFrame;
import javax.swing.JToggleButton;
public class Main {
public static void main(String[] args) {
AbstractButton jb = new JToggleButton("Press Me");
jb.setSelected(true);
JFrame f = new JFrame();
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.getContentPane().add(jb);
f.pack();
f.setVisible(true);
}
}
Home »
Java Tutorial »
javax.swing »
Java Tutorial »
javax.swing »