-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRiga.java
More file actions
46 lines (37 loc) · 837 Bytes
/
Copy pathRiga.java
File metadata and controls
46 lines (37 loc) · 837 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
39
40
41
42
43
44
45
46
class Riga
{
int posizione;
String valore;
int posSx;
int posDx;
public Riga(int posizione, String valore, int posSx, int posDx) {
this.posizione = posizione;
this.valore = valore;
this.posSx = posSx;
this.posDx = posDx;
}
public int getPosizione() {
return posizione;
}
public void setPosizione(int posizione) {
this.posizione = posizione;
}
public String getValore() {
return valore;
}
public void setValore(String valore) {
this.valore = valore;
}
public int getPosSx() {
return posSx;
}
public void setPosSx(int posSx) {
this.posSx = posSx;
}
public int getPosDx() {
return posDx;
}
public void setPosDx(int posDx) {
this.posDx = posDx;
}
}