List of usage examples for javax.swing AbstractButton isFocusPainted
public boolean isFocusPainted()
paintFocus
property. From source file:Main.java
public static void main(String[] args) { AbstractButton jb = new JToggleButton("Press Me"); jb.setSelected(true);//www . j a va 2 s .co m System.out.println(jb.isFocusPainted()); JFrame f = new JFrame(); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.getContentPane().add(jb); f.pack(); f.setVisible(true); }