Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3848b7a3bd7ec4c430e74e202eb094e5c86445f7 (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
package room.basic.service.tcp;

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




public class DTcpControl {
	
	
	/*--------------------- attributes ---------------------*/
	String IPAddr;
	int TcpPort;
	
	//--------------------- attribute setters and getters
	public void setIPAddr (String IPAddr) {
		 this.IPAddr = IPAddr;
	}
	public String getIPAddr () {
		return this.IPAddr;
	}
	public void setTcpPort (int TcpPort) {
		 this.TcpPort = TcpPort;
	}
	public int getTcpPort () {
		return this.TcpPort;
	}
	
	/*--------------------- operations ---------------------*/
	
	// default constructor
	public DTcpControl() {
		super();
		
		// initialize attributes
		this.setIPAddr("");
	}
	
	// constructor using fields
	public DTcpControl(String IPAddr, int TcpPort) {
		super();
		
		this.IPAddr = IPAddr;
		this.TcpPort = TcpPort;
	}
	
	// deep copy
	public DTcpControl deepCopy() {
		DTcpControl copy = new DTcpControl();
		copy.IPAddr = IPAddr;
		copy.TcpPort = TcpPort;
		return copy;
	}
};

Back to the top