Class list number FACULTY: INFORMATION AND COMMUNICATION TECHNOLOGY DEPARTMENT: Department of Computer Science SRN401T: SOFTWARE REQUIREMENTS AND DESIGN IV SWS401T: SOFTWARE SYSTEMS IV Semester I:...

1 answer below »





Class list number FACULTY: INFORMATION AND COMMUNICATION TECHNOLOGY DEPARTMENT: Department of Computer Science SRN401T: SOFTWARE REQUIREMENTS AND DESIGN IV SWS401T: SOFTWARE SYSTEMS IV Semester I: Individual Assignment 1 2020 Due Date: 22 August 2020 At or Before : 24:00hrs (23.59pm) SUBMIT YOUR ASSIGNMENT TO: MyTutor ASSIGNMENT THREE SEMESTER 1, 2020 Examiner: RA Lottering Modertor: U Somagaca Question 1 [40] 1. Consider the underneath diagram and develop an object model from it. (20) 2. Consider the model underneath and develop Java-code for its implementation. (20) Page 1 | SRN401T / SWS401T
Answered Same DayAug 14, 2021SRN401T

Answer To: Class list number FACULTY: INFORMATION AND COMMUNICATION TECHNOLOGY DEPARTMENT: Department of...

Umakant answered on Aug 17 2021
144 Votes
RealEstate/.classpath

    
    
    
RealEstate/.project

     RealEstate
    
    
    
    
        
             org.eclipse.jdt.core.javabuilder
            
            
        
    
    
         org.eclipse.jdt.core.javanature
    
RealEstate/.settings/org.eclipse.jdt.core.prefs
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler
.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8
RealEstate/bin/ForLeaseListing.class
public synchronized class ForLeaseListing {
private float rentalAmount;
private float rentedAmount;
public void ForLeaseListing();
public float getRentalAmount();
public void setRentalAmount(float);
public float getRentedAmount();
public void setRentedAmount(float);
}
RealEstate/bin/ForSaleListing.class
public synchronized class ForSaleListing {
private float askingPrice;
private float soldPrice;
public void ForSaleListing();
public float getAskingPrice();
public void setAskingPrice(float);
public float getSoldPrice();
public void setSoldPrice(float);
}
RealEstate/bin/Listing.class
public synchronized class Listing {
private String listingNumber;
private String address;
private String ownerName;
private String ownerPhone;
private String statusCode;
private java.util.Date dateListed;
private java.util.Date dateSold;
private java.util.Date dateUnlisted;
public void Listing();
public void Listing(String, String, String, String, String, java.util.Date, java.util.Date, java.util.Date);
public String getListingNumber();
public void setListingNumber(String);
public String getAddress();
public void setAddress(String);
public String getOwnerName();
public void setOwnerName(String);
public String getOwnerPhone();
public void setOwnerPhone(String);
public String getStatusCode();
public void setStatusCode(String);
public java.util.Date getDateListed();
public void setDateListed(java.util.Date);
public java.util.Date getDateSold();
public void setDateSold(java.util.Date);
public java.util.Date getDateUnlisted();
public void setDateUnlisted(java.util.Date);
}
RealEstate/bin/RealEstateAgent.class
public synchronized class RealEstateAgent extends RealEstateOffice {
private String agentNumber;
private String name;
private String officePhone;
private String cellPhone;
private String emailAddress;
public void RealEstateAgent();
public void RealEstateAgent(String, String, String, String, String);
public String getAgentNumber();
public void setAgentNumber(String);
public String getName();
public void setName(String);
public String getOfficePhone();
public void setOfficePhone(String);
public String getCellPhone();
public void setCellPhone(String);
public String getEmailAddress();
public void setEmailAddress(String);
}
RealEstate/bin/RealEstateOffice.class
public synchronized class RealEstateOffice {
private String officeNumber;
private String name;
private String officeManager;
private String address;
private String phone;
public void RealEstateOffice();
...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here