Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Finish a specified portion of a GUI program.This program checks whether a user name is valid. For the purpose of this question, a valid user

Finish a specified portion of a GUI program.This program checks whether a user name is valid. For the purpose of this question, a valid user name should have at least 6 characters and start with a letter (either lowercase or uppercase).The simple illustration below shows the frame window with title "Is this a valid user name?", a prompt message label, a textfield for input, a check button, and a result label for displaying check result:

Is this a valid user name?

Try a user name: _________ ( a textfield for input)

Check (button)

(resultLabel, initially empty)

... // proper imports

public class TestWindow extends JFrame implements ActionListener

{

private JTextField nameTextField;// user input

private JLabel resultLabel;// display result

...

public void actionPerformed(ActionEvent e)

{

// ADD CODE to handle the action event on the button

} // end actionPerformed

} // end class TestWindow

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

12th Edition

978-0030243998, 30243998, 324422695, 978-0324422696

Students also viewed these Programming questions

Question

2 How the multiplier effect is influenced by automatic stabilizers

Answered: 1 week ago

Question

The three components of a nucleotide are....... and........?

Answered: 1 week ago

Question

Primary function of root ?

Answered: 1 week ago

Question

The only phyto hormone which is a gas at ordinary temperature?

Answered: 1 week ago

Question

The two fluids that circular in the body?

Answered: 1 week ago