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