Java AbstractButton .getDisabledIcon ()

Syntax

AbstractButton.getDisabledIcon() has the following syntax.

public Icon getDisabledIcon()

Example

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


//www. j  av a2s .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");
    System.out.println(jb.getDisabledIcon());
    
    
    
    JFrame f = new JFrame();
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(jb);
    f.pack();
    f.setVisible(true);
  }
}