Add a JTextField and a JTextArea to the frame. Initialize the field to an empty string and the text area to “||”. Modify the program so that the contents of the field are appended to the area each time the user clicks the button. For example, if the user enters “xxx” in the field and clicks the button three times, the area contains “||xxx||xxx||xxx||”.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Add a JTextField and a JTextArea to the frame. Initialize the field to an empty string and the text area to “||”. Modify the program so that the contents of the field are appended to the area each time the user clicks the button. For example, if the user enters “xxx” in the field and clicks the button three times, the area contains “||xxx||xxx||xxx||”.

Go off this code:

import javax.swing.*;
import java.awt.Color;
import java.awt.event.*;


public class MyCustomFrame extends JFrame
{
   // instance variables - replace the example below with your own
   private JButton button;
   private JLabel label;
   // add two more instance variables for JTextField and a JTextArea t
   // ...
   
   
   private static final int FRAME_WIDTH = 800;
   private static final int FRAME_HEIGHT = 800;
   
   public MyCustomFrame()
   {
      JPanel panel = new JPanel();
      panel.setBackground(Color.RED);
      button = new JButton("Push Me");
      
      // create a listener object and add it to the button
      //...
      
      label = new JLabel("This is a label.");
      final int WIDTH = 10;
      
      // create a JTextField and a JTextArea to the frame. 
      // Initialize the field to an empty string and the text area to “||”. 
      // ...
      
      // add all components into panel
      panel.add(button);
      panel.add(label);
      //add text field and area
      //...
      
      add(panel);
      
      // set the frame size
      setSize(FRAME_WIDTH,FRAME_HEIGHT);
   }

   // write a Clicklisten class to implement interface ActionListener
   //...
   
}

 

Expert Solution
steps

Step by step

Solved in 5 steps with 3 images

Blurred answer
Knowledge Booster
Image Element
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education