-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRentRow.java
167 lines (146 loc) · 2.62 KB
/
RentRow.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
public class RentRow
{
private int aptNum;
private float jan;
private float feb;
private float mar;
private float apr;
private float may;
private float june;
private float july;
private float aug;
private float sept;
private float oct;
private float nov;
private float dec;
public RentRow(int aptNum, float jan, float feb, float mar, float apr, float may, float june, float july, float aug, float sept, float oct, float nov, float dec)
{
this.aptNum = aptNum;
this.jan = jan;
this.feb = feb;
this.mar = mar;
this.apr = apr;
this.may = may;
this.june = june;
this.july = july;
this.sept = sept;
this.oct = oct;
this.nov = nov;
this.dec = dec;
}
public void setAptNum(int aptNum)
{
this.aptNum = aptNum;
}
public void setJan(float jan)
{
this.jan = jan;
}
public void setFeb(float feb)
{
this.feb = feb;
}
public void setMar(float mar)
{
this.mar = mar;
}
public void setApr(float apr)
{
this.apr = apr;
}
public void setMay(float may)
{
this.may = may;
}
public void setJune(float june)
{
this.june = june;
}
public void setJuly(float july)
{
this.july = july;
}
public void setAug(float aug)
{
this.aug = aug;
}
public void setSept(float sept)
{
this.sept = sept;
}
public void setOct(float oct)
{
this.oct = oct;
}
public void setNov(float nov)
{
this.nov = nov;
}
public void setDec(float dec)
{
this.dec = dec;
}
public int getAptNum()
{
return aptNum;
}
public float getJan()
{
return jan;
}
public float getFeb()
{
return feb;
}
public float getMar()
{
return mar;
}
public float getApr()
{
return apr;
}
public float getMay()
{
return may;
}
public float getJune()
{
return june;
}
public float getJuly()
{
return july;
}
public float getAug()
{
return aug;
}
public float getSept()
{
return sept;
}
public float getOct()
{
return oct;
}
public float getNov()
{
return nov;
}
public float getDec()
{
return dec;
}
public float getRent()
{
return getJan() +getFeb() + getMar() + getApr() + getMay() + getJune() + getJuly()
+ getAug() + getSept() + getOct() + getNov() + getDec();
}
@Override
public String toString()
{
return getJan() + " " + getFeb() + " " + getMar() + " " + getApr() +
" " + getMay() + " " + getJune() + " " + getJuly() + " " + getAug() + " " + getSept() + " " + getOct() + " " + getNov() + " " + getDec();
}
}