List of usage examples for javax.swing AbstractButton getDisabledIcon
@Transient
public Icon getDisabledIcon()
From source file:Main.java
public static void main(String[] args) { AbstractButton jb = new JToggleButton("Press Me"); System.out.println(jb.getDisabledIcon()); JFrame f = new JFrame(); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.getContentPane().add(jb);//ww w. j a v a 2 s . c o m f.pack(); f.setVisible(true); }