Java AbstractButton.getText()

Syntax

AbstractButton.getText() has the following syntax.

public String getText()

Example

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


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