Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c5b9549ad2f4ccb37dbfc085385cfd15d0b4f60e (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
72
#ifndef _ReceiverManual_H_
#define _ReceiverManual_H_

#include "etDatatypes.h"

//package cGenRef;




#include "CommunicationProtocol.h"



public class ReceiverManual extends ActorClassBase {

	
	//--------------------- ports
	protected CommunicationProtocolPort dataIn = null;
	//--------------------- saps
	//--------------------- services

	//--------------------- interface item IDs
	protected static final int IFITEM_dataIn = 1;
	
	//--------------------- attributes
	//--------------------- operations

	//--------------------- construction
	public ReceiverManual(IRTObject parent, String name, Address[][] port_addr, Address[][] peer_addr){
		super(parent, name, port_addr[0][0], peer_addr[0][0]);
		setClassName("ReceiverManual");
		
		// initialize attributes

		// own ports
		dataIn = new CommunicationProtocolPort(this, "dataIn", IFITEM_dataIn, 0, port_addr[IFITEM_dataIn][0], peer_addr[IFITEM_dataIn][0]); 
		// own saps
		// own service implementations
	}
	

	//--------------------- lifecycle functions
	public void init(){
		initUser();
	}

	public void start(){
		startUser();
	}

	public void stop(){
		stopUser();
	}
	
	public void destroy(){
		destroyUser();
	}	

	//--------------------- no state machine
	@Override
	public void receiveEvent(InterfaceItemBase ifitem, int evt, Object data) {
	handleSystemEvent(ifitem, evt, data);
	}
	
	@Override
	public void executeInitTransition(){
	}
};

#endif /* _ReceiverManual_H_ */

Back to the top