-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.java
234 lines (198 loc) · 5.23 KB
/
Home.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
package com.company;
class Home extends Rentable {
/**
* <p>
* This is a subclass class of rentable.java and this will be used as a
* simple constructor for the long rent(months) rooms/houses of this program
*<br>
* @param -
* @return -
* @see -
* @author
*/
public Home()
{
}
/**
* <p>
* This is a subclass class of rentable.java and this will be used as a
* simple constructor for the long rent(months) rooms/houses of this program
*<br>
* @param akey, aprice, aowner, aparking, awifi, asize, aavailable, ashortrent, alongrent
* @return -
* @see -
* @author
*/
public Home (String akey, int aprice, String aowner, boolean aparking, boolean awifi,
int asize, boolean aavailable, boolean ashortrent,
boolean alongrent)
{
this.key=akey;
this.price=aprice;
this.owner=aowner;
this.parking=aparking;
this.wifi=awifi;
this.size1=asize;
this.available=aavailable;
this.shortRent=ashortrent;
this.longRent=alongrent;
this.rentDays=0;
this.rented=false;
}
/**
* <p>
* This is a function that let a client (with a role==c )
* rent a long rent house per days
*<br>
* @param "role,rentDays,client name"
* @return -
* @see -
* @author
*/
public void rent(char arole, int arentdays, String aname)
{
if(arole=='c')
{
this.rentDays=arentdays;
this.rented=true;
this.rentName=aname;
System.out.println("rented");
}
}
/**
* <p>
* This is a function that let a client (with a role==c )
* cancel a rent
*<br>
* @param "role,client name"
* @return -
* @see -
* @author
*/
public void unrent(char arole, String aname)
{
if(arole=='c' && aname==this.rentName)
{
this.rentDays=0;
this.rented=false;
this.rentName="";
System.out.println("you canceled the rent");
}
}
/**
* <p>
* This is a function that let the provider edit
* rent place information
*<br>
* @param "owner, key"
* @param "price, parking, wifi, size"
* @return -
* @see -
* @author
*/
public void edit(String akey, int aprice, boolean aparking, boolean awifi,
int asize,String aowner)
{
if(this.owner==aowner)
{
this.price=aprice;
this.parking=aparking;
this.wifi=awifi;
this.size1=asize;
}
}
/**
* <p>
* This is a function that let the provider
* delete a rental place (thsi will set the
* owner as null which in main if a obj has
* the String owner as null the whole obj
* will be set as null which will let
* garbage collector delete it
*<br>
* @param "owner, key"
* @return -
* @see -
* @author
*/
public void delete(String akey, String aowner)
{
if(aowner==this.owner)
{
this.key="";
this.owner=null;
//dont forget to set the whole obj in main as obj=null;
//this way the garbage collector will delete it
}
}
/**
* <p>
* returns if it is rented or not
*<br>
* @param akey
* @return rented
* @see -
* @author
*/
public boolean getRent(String akey)
{
return rented;
}
/**
* <p>
* this rents a home
*<br>
* @param akey,ap
* @return -
* @see -
* @author
*/
public void setRent(String akey,boolean ap)
{
this.rented=ap;
}
/**
* <p>
* this makes a room available again
*<br>
* @param akey,ap
* @return -
* @see -
* @author
*/
public void setAvailable(String akey,boolean ap)
{
this.available=ap;
}
/**
* <p>
* this prints all the info for a room because the .toString could do it
*<br>
* @param n
* @return -
* @see -
* @author
*/
public void display(Rentable n)
{
this.key=n.key;
this.price=n.price;
this.owner=n.owner;
this.parking=n.parking;
this.wifi=n.wifi;
this.size1=n.size1;
this.available=n.available;
this.shortRent=n.shortRent;
this.longRent=n.longRent;
System.out.println("---------------------");
System.out.println("Rentable per month(house/apartment)");
System.out.println("price per month: " +this.price);
System.out.println("Unique key(key to rent): "+this.key);
System.out.println("Owner: " + this.owner);
System.out.println("Parking: "+this.parking);
System.out.println("Wifi: " + this.wifi);
System.out.println("Size: " + this.size1);
System.out.println("---------------------");
//tsig 404 was here !!
}
}