Java Swing Tutorial - Java AbstractButton .isRolloverEnabled ()








Syntax

AbstractButton.isRolloverEnabled() has the following syntax.

public boolean isRolloverEnabled()

Example

In the following code shows how to use AbstractButton.isRolloverEnabled() method.

import javax.swing.AbstractButton;
import javax.swing.JFrame;
import javax.swing.JToggleButton;
//from w  ww  . j  a  va  2 s.  c o  m
public class Main {
  public static void main(String[] args) {
    AbstractButton jb = new JToggleButton("Press Me");
    jb.setSelected(true);
    System.out.println(jb.isRolloverEnabled());
    
    JFrame f = new JFrame();
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(jb);
    f.pack();
    f.setVisible(true);
  }
}