Here is a domain model for a program that searches flights and let\'s a consumer
ID: 3727943 • Letter: H
Question
Here is a domain model for a program that searches flights and let's a consumer buy tickets (just like buying an airplane ticket online)
I have to code the "Seat" part that is marked with the red. - Working on Eclipse
Some more explanations:
Private:
Price: price of the seat :int
Class - depends if it’s first class or coach :String
Passenger - a passenger get’s one seat :boolean
Entertainment- whether the airline has tv for example :String
electricConnections- whether you can charge your phone for example:String
Luggage- each passenger has a luggage :String
Food- whether the airplane offers food or not :boolean
seatNumber- the number of the seat :int
Public:
getPrice() : int
getClass(): String
getPassenger(): Passenger
getSeatNo(): int
Please write the full code for this part. Do not asnwer it of you do not know it!
locationList: LocationList aldineList: LetcAWrline reeults: Liet +getPricad int Model layer get3eat): Seat getBockingNumier:String vcid +addRatingtrating, int) + getRating: double + getFassargerü +gelSeatNo: int + getFlight Flight +setFigntillight: Fligh Storage layer : void setBoakinNumber String) wid getElectConnectiors: String getLuggage: String gelFightN: int + eetSeste(seats: Lie-Seats): void Passenger ame e String +geNamel): StringExplanation / Answer
public class Seat {
private int price;
private String Class;
private Passenger passenger;//import from your project
private String entertainment;
private String electricConnections;
private String luggage;
private boolean food;
private int seatNumber;
public int getPrice() {
return price;
}
public String getClass() {
return Class;
}
public int getSeatNumber() {
return seatNumber;
}
public Passenger getPassenger(){
return passenger;
}
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.