Answers for "how to use another class in java inside of an action listenrer"

0

how to use another class in java inside of an action listenrer

public class SomeActionListener implements ActionListener{

    private JTextField textField1;
    private JComboBox combo1;
    private JTextField textField2;
    //...

    public SomeActionListener(JTextField textField1, JComboBox combo1, 
                                          JTextField textField2){
        this.textField1=textField1;
        this.combo1=combo1;
        this.textField2=textField2;
        //...
    }

    public void actionPerformed(ActionEvent e) {
        //cmd
    }

}
Posted by: Guest on October-21-2020

Code answers related to "how to use another class in java inside of an action listenrer"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language