-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDhome.java
More file actions
38 lines (29 loc) · 702 Bytes
/
Dhome.java
File metadata and controls
38 lines (29 loc) · 702 Bytes
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
package org.example;
public class Dhome {
private double siperfaqe;
private int kati;
private String lloji;
public Dhome(double siperfaqe, int kati, String lloji) {
this.siperfaqe = siperfaqe;
this.kati = kati;
this.lloji = lloji;
}
public double getSiperfaqe() {
return siperfaqe;
}
public void setSiperfaqe(double siperfaqe) {
this.siperfaqe = siperfaqe;
}
public int getKati() {
return kati;
}
public void setKati(int kati) {
this.kati = kati;
}
public String getLloji() {
return lloji;
}
public void setLloji(String lloji) {
this.lloji = lloji;
}
}