ComputerScienceExpert

(11)

$18/per page/

About ComputerScienceExpert

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Applied Sciences,Calculus See all
Applied Sciences,Calculus,Chemistry,Computer Science,Environmental science,Information Systems,Science Hide all
Teaching Since: Apr 2017
Last Sign in: 103 Weeks Ago, 3 Days Ago
Questions Answered: 4870
Tutorials Posted: 4863

Education

  • MBA IT, Mater in Science and Technology
    Devry
    Jul-1996 - Jul-2000

Experience

  • Professor
    Devry University
    Mar-2010 - Oct-2016

Category > Programming Posted 08 May 2017 My Price 9.00

Java Abstract Program

Java Abstract Program
You work in a travel company and are upgrading the programs they use to make reservations. Reservations are made by customers for hotel rooms at different destinations. The reservations also include the airline ticket information. However, this information is stored in several different tables in the database. Your project manager informs you that you have to model the classes in your program based on the tables in the database..but that saving the information and reading them will be done later. 
.....You ask one of the other programmers how to do this and your coworker says "What you need to do is to have the Flight and Room as separate classes and then make a Reservation class that has one of each of them as internal objects. The system is going to be passing all of them together to different places too and it would be better to do it as a composite object because thats the way we think about it in our company."


* Create a class called Flight with a FlightID (String) and price (double). Include a constructor and all get() and set() methods.

* Create a class called Room with a RoomID (String), HotelName(String), DaysReserved(String to keep it simple here) and price (double). Include a constructor and all get() and set() methods.

* Create a class called Reservation that has a Flight Object, Room Object and a CustomerID(String). Include a constructor, get() and set() methods for the CustomerID(). You may include get() and set() methods for the Flight and Room objects to work with them like will be shown in a class example -or- create the objects first and pass them in through the constructor(Either way is fine and it is completely up to you.) 
..Also create a toString() method in the Reservation that reports the reservation price of the flight and the room that are inside it added together, as well as all of the other information including the CustomerID, FlightID, RoomID, HotelName, and DaysReserved.

 

 

Note on common errors on this assignment in past include: 
Do not have a double variable to store a price in the Reservation. 
Do not have a FlightID, RoomID, HotelName, or DaysReserved in Reservation.
(This data is all stored in the internal objects. Having them in the outer class and not using these values stored in the inner classes will be a major deduction.

*Create a class called ReservationTest that creates 2 Reservations with all of their values, then prints out all of the information for that reservation to the screen for the user.

You do not have to get the data from the user to put inside of these reservations. You can hard code the values .

Answers

(11)
Status NEW Posted 08 May 2017 06:05 AM My Price 9.00

-----------

Not Rated(0)