Java AbstractButton.setText(String text)
Syntax
AbstractButton.setText(String text) has the following syntax.
public void setText(String text)
Example
In the following code shows how to use AbstractButton.setText(String text) method.
/* w w w . j ava2 s . c o m*/
import java.awt.Color;
import javax.swing.AbstractButton;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
public class Main {
public static void main(String[] args) {
AbstractButton jb = new JButton("Press Me");
jb.addChangeListener(new ChangeListener() {
public void stateChanged(ChangeEvent ev) {
System.out.println("ChangeEvent!");
}
});
jb.setText("new text");
JFrame f = new JFrame();
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.getContentPane().add(jb);
f.pack();
f.setVisible(true);
}
}
Home »
Java Tutorial »
javax.swing »
Java Tutorial »
javax.swing »