Java AbstractButton .setFocusPainted (boolean b)

Syntax

AbstractButton.setFocusPainted(boolean b) has the following syntax.

public void setFocusPainted(boolean b)

Example

In the following code shows how to use AbstractButton.setFocusPainted(boolean b) method.


/*from  w w w  . j  a v  a2s  .  c  om*/
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.setFocusPainted(false);
    
    
    
    JFrame f = new JFrame();
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(jb);
    f.pack();
    f.setVisible(true);
  }
}