Question: question 4 Course code : Object Oriented Programming I need this question answer with in 1 hour. using java language Question 4 [8] Complete the
question 4
Course code : Object Oriented Programming
I need this question answer with in 1 hour. using java language

Question 4 [8] Complete the following code to create a GUI that has the same appearance as the given GUI(s). Some GUI objects are already created in the code. You need to create the rest of the objects and complete the code. After that, add event handling functionality to the code so that when the button is clicked, the inputs in the textfields are swapped (Check Fig 1 & Fig 2). You need to perform following tasks to complete the GUI: Create the "Swap" button object Set the frame object's layout properly and call necessary methods Add components to the frame Make the frame visible Perform button click handling [You can also use corresponding AWI classes (trame etc.) instead of Swing classes (JFrame) if you want] Swapping App abc 123 Swap public class GUITest { public static void main(String[] args) { JFrame frame = new JFrame(); frame.setSize(275, 120); JTextField tfi = new JTextField(10); JTextField tf2 = new JTextField(18); // Add your code 1: Complete the GUI // Add your code 2: Complete button click handling Fig 1: Before clicking Swap button Swapping App } 123 abc Swap! Fig 2: After clicking Swap button
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
