Java Swing Tutorial - Java AbstractButton.getIcon()








Syntax

AbstractButton.getIcon() has the following syntax.

public Icon getIcon()

Example

In the following code shows how to use AbstractButton.getIcon() method.

/*  w w w . ja  va2s.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.setSelected(true);
    System.out.println(jb.getIcon());
    
    JFrame f = new JFrame();
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(jb);
    f.pack();
    f.setVisible(true);
  }
}