Question: Using the template below create a GUI with a push button event. Use a JTextArea to display which button was selected. /******************* Name: Date: Notes:
Using the template below create a GUI with a push button event. Use a JTextArea to display which button was selected.
/******************* Name:
Date:
Notes: *******************/
import javax.swing.*; import java.awt.*; import java.awt.event.*; class Actions extends JFrame implements ActionListener { Create the components (textarea and buttons)
public Actions() { create the window (include a close operation) create the container (include FlowLayout) add the event listeners (button.addActionListener) add the components } public void actionPerformed(ActionEvent event) { add the event handler( if statements and event.getSource should be used here) } public static void main (String[] args) { Actions eg = new Actions(); } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
