/Users/suziweissova/Desktop/School/Grade 11/Computer Science/Dossier for bro 56/src/dossier/pkgfor/bro/propertyInformation.java
 1 /*
 2  * To change this template, choose Tools | Templates
 3  * and open the template in the editor.
 4  */
 5 package dossier.pkgfor.bro;
 6 
 7 /**
 8  *
 9  * @author suziweissova
10  */
11 public class propertyInformation {
12     
13     private String propertyType = "not set yet";        //Declares a string for property type as unset.
14     private double developmentCost = -999;              //Declares a double for development cost as -999.
15     private double repairBudget = -999;                 //Declares a double for repair budget as -999.
16     private String propertyAddress = "not set yet";     //Declares a string for property address as unset.
17     
18     public propertyInformation(String propertyType, double developmentCost, double repairBudget, String propertyAddress){
19         this.propertyType = propertyType;
20         this.developmentCost = developmentCost;
21         this.repairBudget = repairBudget;
22         this.propertyAddress = propertyAddress;
23     }
24     public propertyInformation(){
25         
26     }
27     public String getpropertyType(){
28         return propertyType;
29     }
30     
31     public double getdevelopmentCost(){
32         return developmentCost;
33     }
34     
35     public double getrepairBudget (){
36         return repairBudget;
37     }
38     
39     public String getpropertyAddress(){
40         return propertyAddress;
41     }
42     
43     public void setpropertyType(String propertyType){
44         this.propertyType = propertyType;
45         
46     }
47     
48     public void setdevelopmentCost (double developmentCost){
49         this.developmentCost = developmentCost;
50     }
51     
52     public void setrepairBudget (double repairBudget){
53         this.repairBudget = repairBudget;
54     }
55     
56     public void setpropertyAddress (String propertyAddress){
57         this.propertyAddress = propertyAddress;
58     }
59    
60     
61 }
62