Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: de3c3539bfc3e3ec6b1144abe04fb34a50667955 (plain) (blame)
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
package room.basic.service.timing;

import static org.eclipse.etrice.runtime.java.etunit.EtUnit.*;




public class TimerData {
	
	
	/*--------------------- attributes ---------------------*/
	int time;
	int id;
	
	/* --------------------- attribute setters and getters */
	public void setTime (int time)
	 {
		 this.time = time;
	}
	public int getTime ()
	 {
		return this.time;
	}
	public void setId (int id)
	 {
		 this.id = id;
	}
	public int getId ()
	 {
		return this.id;
	}
	
	/*--------------------- operations ---------------------*/
	
	// default constructor
	public TimerData() {
		super();
		
		// initialize attributes
	}
	
	// constructor using fields
	public TimerData(int time, int id) {
		super();
		
		this.time = time;
		this.id = id;
	}
	
	// deep copy
	public TimerData deepCopy() {
		TimerData copy = new TimerData();
		copy.time = time;
		copy.id = id;
		return copy;
	}
};

Back to the top