Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

(using java) Question 1 Implement the class Block as depicted in the UML diagram. Note that the toString method returns the description of a Block

image text in transcribed

(using java)

Question 1 Implement the class Block as depicted in the UML diagram. Note that the toString method returns the description of a Block object as in the following format:

The block has 7 Floors and 2 Auditoriums

Question 2 : Implement the class Campus that has a composition relationship with the class Block. In this question, you are required to declare all the attributes and define the constructor and getters methods as presented in the UML diagram. The attribute address contains city and country separated by #, for example, Hamra#Lebanon.

  1. 1. Implement the setter methods of class Campus:
  1. setBlock(b: Block): This method sets the Block b to the campus object.
  2. setAddress(address: String): This method sets the address to the campus.
  1. 2. Implement the following methods of class Campus:
  1. toString(): This method returns the description of the entire campus including the address and the description of the block.
  2. findCountry():This method extracts the country from the address attribute (Use split method).
  1. 3. Implement the driver class as follows:
  1. Create a Campus object which data are given by the programmer (Not from the user)
  2. Create a Block object and set it to the campus created in the previous question(data from the programmer as well)
  1. 1. Continue the implementation of the driver class:

Question 1: Write the code to:

  1. Access the number of auditoriums from the Campus object and display its value.
  2. Increment the number of floors by two.
  3. Display the description of the campus object.

Change the address of the campus (data from the programmer as well).

- Block -numOfFloors: int -numAuditoriums; int +Block(---All Parameters----) +getNumOfFloorso: int +setNumOlFloors (nbFloors: int): void + setNumAuditoriums (nbAud: int): void +getNumAuditoriums(): int +toString(): String Campus -block: Block -address: String//for example Homra#Lebanon +Campus( address : String) +getBlock0: Block +getAddress: String tsetAddress address: String): void +setBlock(b: Block): void +toString(): String +find Country:String

Step by Step Solution

There are 3 Steps involved in it

Step: 1

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

Beginning C# 5.0 Databases

Authors: Vidya Vrat Agarwal

2nd Edition

1430242604, 978-1430242604

More Books

Students also viewed these Databases questions

Question

Explain the factors influencing wage and salary administration.

Answered: 1 week ago

Question

Examine various types of executive compensation plans.

Answered: 1 week ago

Question

1. What is the meaning and definition of banks ?

Answered: 1 week ago

Question

2. What is the meaning and definition of Banking?

Answered: 1 week ago