Example usage for java.awt.event ActionListener interface-usage

List of usage examples for java.awt.event ActionListener interface-usage

Introduction

In this page you can find the example usage for java.awt.event ActionListener interface-usage.

Usage

From source file Main.java

public class Main extends JFrame implements ActionListener {
    JButton showDialog = new JButton("show dialog");

    public Main() {
        setLayout(new FlowLayout());
        showDialog.addActionListener(this);

From source file MenuActionListener.java

class MenuActionListener implements ActionListener {
    public void actionPerformed(ActionEvent e) {
        System.out.println("Selected: " + e.getActionCommand());

    }
}

From source file MenuActionListener.java

class MenuActionListener implements ActionListener {
    public void actionPerformed(ActionEvent actionEvent) {
        System.out.println("Selected: " + actionEvent.getActionCommand());
    }
}

From source file CascadeDemo.java

public class CascadeDemo extends JFrame implements ActionListener {
    private static ImageIcon EARTH;
    private int m_count;
    private int m_tencount;
    private JButton m_newFrame;
    private JDesktopPane m_desktop;

From source file org.jfree.chart.demo.Animator.java

class Animator extends Timer implements ActionListener {

    private static final long serialVersionUID = 1L;

    private DefaultCategoryDataset dataset;

From source file Main.java

public class Main extends JFrame implements ActionListener {
    JTextArea f = new JTextArea("A medium sized text");

    public Main() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        JPanel all = new JPanel();

From source file Main.java

public class Main extends JFrame implements ActionListener {
    static ProgressMonitor pbar = new ProgressMonitor(null, "Monitoring Progress", "Init. . .", 0, 100);
    static int counter = 0;

    public Main() {
        setSize(250, 100);

From source file Main.java

public class Main extends JPanel implements ActionListener {
    JComboBox<String> combo1 = new JComboBox<>(new String[] { "Course 1", "Course 2", "Course 3" });
    JComboBox<String> combo2 = new JComboBox<>();
    ComboBoxModel<String>[] models = new ComboBoxModel[3];

    public Main() {

From source file MainClass.java

public class MainClass extends JFrame implements ActionListener {

    static ProgressMonitor pbar = new ProgressMonitor(null, "Monitoring Progress", "Initializing . . .", 0, 100);

    static int counter = 0;

From source file PopupActionListener.java

class PopupActionListener implements ActionListener {
    public void actionPerformed(ActionEvent actionEvent) {
        System.out.println("Selected: " + actionEvent.getActionCommand());
    }
}