Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Given the following UML diagram for class Chair: table [ [ Chair ] , [ - weight: double ] , [ - distanceFromFrontWall: double
Given the following UML diagram for class Chair:
tableChairweight: doubledistanceFromFrontWall: doublecolor: StringdateManufactured: DateChairChairweight: double,distanceFromFrontWall: double,color: String, dateManufactured:DatesetWeightweight: double: voidsetDistanceFromFrontWalldistanceFromFrontWall: double: voidsetColorcolor: String: voidsetDateManufactureddateManufactured: Date: voidgetWeight: doublegetDistanceFromFrontWall: doublegetColor: StringgetDateManufactured: DatemoveChairForwarddistance: double: voidmoveChairBackwarddistance: double: void
Please do the following:
Create a class file called Chair.java that implements the UML displayed above exactly as specified same variable names, types, Also, make sure that the noarg constructor calls the allargument constructor and provides default values for the properties.
Create a class file called Room.java that implements a class called Room that has the following properties and constructorsmethods:
Properties All Private: number int length double width double array of type Chair called chairs.
allargument constructor that initializes all Room properties settergetter methods for each of the properties above method displayRoomInfo which prints a room's number, length, width, and total number of chairs in a room, as well as the number of chairs of each color red yellow, or white
You should also create a UML diagram for this class as described below.
Create a class file called Driver.java that implements the Driver class which should implement the following two methods:
main method which should create an array of room objects called rooms For this program, set the size of the array to exactly To initialize the property values for each room in array rooms, you should do the following:
a Create an array of chairs with a random number of chairs between and inclusive and add that number of Chair objects to the array. Each Chair object added to the array should be given the same default value for properties weight and dateManufactured. As for property distanceFromFrontWall, each chair should be given a random value that does not exceed the length of the room. For the property color, you should assign a random color out of the following three colors only red, yellow, or white Use the Random class to do those. b Use the allargument Room constructor to set a number for each room Use sequentially in this case a random number from to for room length, and a random number from to for room width. Use the Random class. Also set the room chairs using the array created in point a above.
displayRooms method which takes an array of type Room as an argument and loops through it displaying the property values for each room in the array you should call the method displayRoominfo to do that The table should be organized as follows:
number length width total chairs red yellow white
eg:
Your Driver class should define a constant called SEEDVALUE which is the value of the seed to be used when you create your object of Random Type to be used in all your program. You should use the same created Random object ONE OBJECT ONLY with the same seed SEEDVALE to generate all the random values described above using the suitable methods in the Random class NOT doing this step correctly will cause you to lose many points. IMPORTANT: What you need to turn in:
Using one of the free UML drawing tools eg UMLet draw a complete UML diagram for the Room class and insert an image of it in a Word file called roomuml.docx then put that file inside your project folder. In the UML, each student should replace the name of the properties length and width to length#### and width#### where #### is the last four digits of hisher university id number this is only done in the UML and not in the implementation above
yellow white
eg:
Your Driver class should define a constant called SEEDVALUE which is the value of the seed to be used when you create your object of Random Type to be used in all your program. You should use the same created Random object ONE OBJECT ONLY with the same seed SEEDVALE to generate all the random values described above using the suitable methods in the Random class NOT doing this step correctly will cause you to lose many points. IMPORTANT: What you need to turn in:
Using one of the free UML drawing tools eg UMLet draw a complete UML diagram for the Room class and insert an image of it in a Word file called roomuml.docx then put that file inside your project folder. In the UML, each student should replace the name of the properties length and width to length#### and width#### where #### is the last four digits of hisher university id number this is only done in the UML and not in th
Step 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