Java Swing Tutorial - Java AbstractButton .getDisabledSelectedIcon ()








Syntax

AbstractButton.getDisabledSelectedIcon() has the following syntax.

public Icon getDisabledSelectedIcon()

Example

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

import javax.swing.AbstractButton;
import javax.swing.JFrame;
import javax.swing.JToggleButton;
/*  w w  w. ja  v  a  2s  .c  om*/
public class Main {
  public static void main(String[] args) {
    AbstractButton jb = new JToggleButton("Press Me");
    System.out.println(jb.getDisabledSelectedIcon());
    
    
    
    JFrame f = new JFrame();
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(jb);
    f.pack();
    f.setVisible(true);
  }
}