Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4e75a1ed897eb4f87a8d25dad261e5ab046ba132 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package room.basic.service.tcp;

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




public class DTcpPayload {
	
	
	/*--------------------- attributes ---------------------*/
	int connectionId;
	int length;
	byte data[];
	
	//--------------------- attribute setters and getters
	public void setConnectionId (int connectionId) {
		 this.connectionId = connectionId;
	}
	public int getConnectionId () {
		return this.connectionId;
	}
	public void setLength (int length) {
		 this.length = length;
	}
	public int getLength () {
		return this.length;
	}
	public void setData (byte[] data) {
		 this.data = data;
	}
	public byte[] getData () {
		return this.data;
	}
	
	/*--------------------- operations ---------------------*/
	
	// default constructor
	public DTcpPayload() {
		super();
		
		// initialize attributes
		{
			byte[] array = new byte[1000];
			for (int i=0;i<1000;i++){
				array[i] = (byte)0;
			}
			this.setData(array);
		}
	}
	
	// constructor using fields
	public DTcpPayload(int connectionId, int length, byte[] data) {
		super();
		
		this.connectionId = connectionId;
		this.length = length;
		this.data = data;
	}
	
	// deep copy
	public DTcpPayload deepCopy() {
		DTcpPayload copy = new DTcpPayload();
		copy.connectionId = connectionId;
		copy.length = length;
		for (int i=0;i<data.length;i++){
			copy.data[i] = data[i];
		}
		return copy;
	}
};

Back to the top