Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Create an advanced enumeration to represent the months. Each enum should come with a friendlyName, shortName, daysInMonth, isLeapYearMonth, the zodiacSign, the zodiacStartDay and zodiacNextMonthEndDay

1. Create an advanced enumeration to represent the months. Each enum should come with a friendlyName,

shortName, daysInMonth, isLeapYearMonth, the zodiacSign, the zodiacStartDay and zodiacNextMonthEndDay

Aquarlus,pisces,Aries,Taurus, Gemini, Cancer, Leo, Virgo,Libra,Scorpio, Sagittarius, Capricom

a. Tester

i. Properties

1. (ConcurrentHashMap())

rentals (Key is the apartments apartmentId)

b. Apartment

i. Properties

1. (string)

apartmentId, address

2. (ConcurrentHashMap())

renters (Key is the renters renterId)

ii. 2 Constructors:

Accepts: apartmentId, and address

Accepts: RandomAccessFile

iii. Methods:

1. addRenter(Renter r)

2. save(RandomAccessFile raf), load(RandomAccessFile raf)

c.

Renter

i. Properties

1. (string)

renterId, name

2. (ConcurrentHashMap())

items (Key is the items itemId)

ii. 2 Constructors:

Accepts: renterId, and name

Accepts: RandomAccessFile

iii. Methods

1. addItem(Item i)

2. save(RandomAccessFile raf), load(RandomAccessFile raf)

d. Item

i. Properties

1. (string)

itemId, name

ii. 2 Constructors:

Accepts: itemId, and name

Accepts: RandomAccessFile

iii. Methods

1. save(RandomAccessFile raf), load(RandomAccessFile raf)

3. In the App class you should populate your tree of data starting with 3 Apartments, each rental has 4 renters, and each

renter has 3 items. Save the data by calling the save for each apartment. This should cascade down the tree. Clear

the rentals ConcurrentHashMap and then reload the entire structure (code below) and print the list

while(raf.getFilePointer() < raf.length())

Apartment a = new Apartment(raf);

rentals.put(a.apartmentId, a);

}

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

Database Marketing The New Profit Frontier

Authors: Ed Burnett

1st Edition

0964535629, 978-0964535626

More Books

Students also viewed these Databases questions

Question

What is disadvantage of buying vs leasing vehicle?

Answered: 1 week ago