Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Design and implement Java program as follows: 1) Implement converter class hierarchy as follows: a. Converter class which includes: Private attribute for input of

image text in transcribed image

Design and implement Java program as follows: 1) Implement converter class hierarchy as follows: a. Converter class which includes: Private attribute for input of data type double Default constructor with no parameter which sets input to Double.NaN Overloaded constructor with input for parameter Get and set methods for input attribute Method convert() which returns input value b. TemperatureConverter class which is a child of Converter and includes: Constructors which call parent constructors Overridden convert() method to convert input (Fahrenheit temperature) to Celsius and returns the value. If the instance has no input value, it should return Double.NaN Use the following formula for conversion: C = ((F-32)*5)/9 c. DistanceConverter class which is a child of Converter and includes: Constructors which call parent constructors Overridden convert() method to convert input (distance in miles) to distance in kilometers and returns the value. If the instance has no input value, it should return Double.NaN d. Use the following formula for conversion: KM = M * 1.609 2) Implement GUIConverter class using JFrame and JPanel as follows: a. GUI will have 3 buttons: "Distance Converter", "Temperature Converter", and "Exit". Welcome to Conte Distance Converter Temperature Converter Ext b. When user clicks Exit, the program will terminate c. When user clicks Distance Converter, an input dialog will pop up where user can type value and click OK: Welcome to Converter Input ? Input miles distance to convert 3.1 Converter OK Cancel Exit d. Once user clicks OK, message dialog will pop up: vert() Welco Message i 3.1 Miles equals 4.9879 Kilometers OK When user clicks on Temperature button, an input dialog will pop up to input value and then when clicks OK, the message dialog with pop up with converted result: Welcome to Converter Input ? Input fahrenheit temperature to convert 32 Converter OK Cancel Welcome to Converter Exit Message i 32 F equals 0.0 C e Converter OK Exit f. SUGGESTIONS: For the input dialog you can use JOptionPane.showInputDialog The ActionListener for each Converter button should create the appropriate Converter child instance, set the input, and call its convert() method For the pop up with converted value you can use JOptionPane.showMessageDialog Style and Documentation: Make sure your Java program is using the recommended style such as: Javadoc comment up front with your name as author, date, and brief purpose of the program

Step by Step Solution

3.49 Rating (159 Votes )

There are 3 Steps involved in it

Step: 1

The Java code is given below and Comments are used to include stepbystep instructions The Sample Performance has come to an end Converter Class public class Converter private double input Private attr... 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

Introduction to Java Programming, Comprehensive Version

Authors: Y. Daniel Liang

10th Edition

133761312, 978-0133761313

More Books

Students also viewed these Programming questions

Question

When is the deadline?

Answered: 1 week ago

Question

Which are the strongest parts?

Answered: 1 week ago

Question

Which character has an opposite script?

Answered: 1 week ago