Java Swing Tutorial - Java AbstractButton .isFocusPainted ()








Syntax

AbstractButton.isFocusPainted() has the following syntax.

public boolean isFocusPainted()

Example

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

/*from  w w w  .j av  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);
    System.out.println(jb.isFocusPainted());
    
    JFrame f = new JFrame();
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(jb);
    f.pack();
    f.setVisible(true);
  }
}