-
Notifications
You must be signed in to change notification settings - Fork 0
/
EventoTastiera.java
43 lines (35 loc) · 961 Bytes
/
EventoTastiera.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
package prg.esamiPassati.es6;
public class EventoTastiera extends Evento{
int tasto;
int modificatore;
//costruttori
public EventoTastiera(int id, String description, int tasto, int modificatore){
super(id, description);
this.setTasto(tasto).setModificatore(modificatore);
}
//metodi set
public EventoTastiera setTasto(int tasto){
this.tasto = tasto;
return this;
}
public EventoTastiera setModificatore(int modificatore){
this.modificatore = modificatore;
return this;
}
@Override
public Evento setDescription(String description){
super.setDescription(description + "(tastiera)");
return this;
}
//metodi get
public int getTasto(){
return this.tasto;
}
public int getModificatore(){
return this.modificatore;
}
//metodo toString
public String toString(){
return super.toString() + "\tTASTO: " + this.getTasto() + "\tMODIFICATORE: "+ this.getModificatore();
}
}