Assignment
OBJECTIVES
· Create a GUI that uses JTextField, JLabel, and JButton.
· Write event handlers to process user data.
PROBLEM: Health Profile App
GymsRUs would like to replace their console program with an updated app using a graphical user interface. You will use the HealthProfile class that you created in the Lab and build a GUI for it.
FUNCTIONAL REQUIREMENTS
Make sure your HealthProfile class from the Lab is in a named package, not default (i.e., package lab1).
You must ADD the project that contains the HealthProfile class to this week's project by
right click project, go to properties; and
click Libraries, Add Project, click OK.
Then you will be able to reference your existing class as
import lab1.HealthProfile.
Your project will have three classes:
· HealthProfile class from Lab
· HealthProfileGUI class
· Lab2Main class
Your HealthProfildGUI class should have the following components (see sample GUI below).
· JTextField objects to enter: name, age, height in feet, height in inches, weight in pounds
· JButton objects to display results, clear the GUI
· JTextField objects to display the BMI, category, and max heart rate
· JLabels to describe all textboxes
You are free to layout and design your GUI as you like as long as it includes these components.
Add default and parameterized constructors to your HealthProfile class. The parameterized constructor should have five arguments: the name, age, weight, height in feet, and height in inches. Note it should convert the height to inches to store in the private instance variable.
Code event handlers for each button:
· Display: Make sure all user input is present and valid
Use the HealthProfile class to process the data
Display the results on the GUI
· Clear Clear all text boxes on the GUI
Lab Report
Objective/Purpose of the program
Briefly describe the program's requirements.
Analysis/Design
Describe the approach/structure of program.What classes/functions were used?
Testing/Results
Does your program satisfy all requirements of the lab?
If yes, how did you test it? Indicate test cases used, expected values, and show results with screen shots. For example:
Case
|
Description
|
Test Data
|
Expected Result
|
Actual Result
|
1
|
Describe what you are testing
|
Specify the test data
|
What is expected
|
Actual results - reference an image that you include below.
|
If any requirements are NOT met, document the known issues. What did you do to try to solve them?
Make sure you demonstrate in your testing the parts that are working correctly.
Conclusions / Lessons Learned
What difficult problems did you encounter, and how did you handle them?
What new concepts did you learn/reinforce with this lab?
Is there anything you would have done differently?