List of usage examples for javax.swing AbstractButton getSelectedIcon
public Icon getSelectedIcon()
From source file:Main.java
public static void main(String[] args) { AbstractButton jb = new JButton("Press Me"); System.out.println(jb.getSelectedIcon()); JFrame f = new JFrame(); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.getContentPane().add(jb);/*from w ww . j av a2 s. c om*/ f.pack(); f.setVisible(true); }