Biblioteca Java - Blame information for rev 16
Subversion Repositories:
Rev | Author | Line No. | Line |
---|---|---|---|
16 | mihai | 1 | |
2 | package cfr; | ||
3 | |||
4 | public class Tren { | ||
5 | private int id; | ||
6 | private String statia_plecare; | ||
7 | private String statia_sosire; | ||
8 | private int ora_plecare; | ||
9 | private int stare; | ||
10 | |||
11 | public Tren(int id, String statia_plecare, String statia_sosire, int ora_plecare, int stare) { | ||
12 | this.id = id; | ||
13 | this.statia_plecare = statia_plecare; | ||
14 | this.statia_sosire = statia_sosire; | ||
15 | this.stare = stare; | ||
16 | this.ora_plecare = ora_plecare; | ||
17 | } | ||
18 | |||
19 | int getOraPlecare(){ | ||
20 | return ora_plecare; | ||
21 | } | ||
22 | |||
23 | void setStare(int s){ | ||
24 | stare = s; | ||
25 | } | ||
26 | |||
27 | int getStare(){ | ||
28 | return stare; | ||
29 | } | ||
30 | |||
31 | void afisare(){ | ||
32 | System.out.println("Tren "+id+" "+statia_plecare+" "+statia_sosire+" stare="+stare+" ora plecare="+ora_plecare); | ||
33 | } | ||
34 | } |