Java ButtonModel.isRollover()
Syntax
ButtonModel.isRollover() has the following syntax.
boolean isRollover()
Example
In the following code shows how to use ButtonModel.isRollover() method.
//from w w w . ja v a 2 s. c om
import java.awt.BorderLayout;
import javax.swing.JCheckBox;
import javax.swing.JFrame;
public class Main {
public static void main(String[] a) {
JFrame frame = new JFrame("Selecting CheckBox");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JCheckBox checkBox = new JCheckBox("Hi");
checkBox.getModel().setEnabled(false);
System.out.println(checkBox.getModel().isRollover());
frame.add(checkBox, BorderLayout.NORTH);
frame.setSize(300, 100);
frame.setVisible(true);
}
}
Home »
Java Tutorial »
javax.swing »
Java Tutorial »
javax.swing »