Answered step by step
Verified Expert Solution
Question
1 Approved Answer
There needs to be a GUI on this program. Don't copy the code from the last time this question was asked because it does not
There needs to be a GUI on this program. Don't copy the code from the last time this question was asked because it does not work.
Write an application or applet that implements a trip-time calculator. Define and use a class TripComputer to compute the time of a trip. TripComputer should have the private attributes totalTime-the total time for the trip restStop Taken a boolean flag that indicates whether a rest stop has been taken at the end of the current leg and the following methods: computeLegTime(distance, speed)-computes the time for a leg of the trip having a given distance in miles and speed in miles per hour. If either the distance or the speed is negative, throws an exception. takeRestStop (time)-takes a rest stop for the given amount of time. If the time is negative, throws an exception. Also throws an exception if the client code attempts to take two rest stops in a row. getTrip Time-returns the current total time for the trip Here is one possible configuration of the labels, buttons, and text fields required by the trip- time calculator: TRIP TifE CALCULATOR ADD LEG ADD STOP STOP TIME DISTANCE yoUR TRIP TIME SPEED 50 FARStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started