View Javadoc

1   package cz.cuni.amis.pogamut.base.component.controller;
2   
3   import cz.cuni.amis.pogamut.base.agent.IAgentId;
4   import cz.cuni.amis.utils.exception.PogamutException;
5   
6   /**
7    * Provides empty implementations of life-cycle methods defined by {@link ISharedComponentControlHelper} - override only these that you need.
8    * 
9    * @author Jimmy
10   */
11  public class SharedComponentControlHelper implements ISharedComponentControlHelper {
12  
13  	@Override
14  	public void localKill(IAgentId agentId) {
15  	}
16  
17  	@Override
18  	public void localPause(IAgentId agentId) throws PogamutException {
19  	}
20  
21  	@Override
22  	public void localPrePause(IAgentId agentId) throws PogamutException {
23  	}
24  
25  	@Override
26  	public void localPreResume(IAgentId agentId) throws PogamutException {
27  	}
28  
29  	@Override
30  	public void localPreStart(IAgentId agentId) throws PogamutException {
31  	}
32  
33  	@Override
34  	public void localPreStartPaused(IAgentId agentId) throws PogamutException {
35  	}
36  
37  	@Override
38  	public void localPreStop(IAgentId agentId) throws PogamutException {
39  	}
40  
41  	@Override
42  	public void localReset(IAgentId agentId) {
43  	}
44  
45  	@Override
46  	public void localResume(IAgentId agentId) throws PogamutException {
47  	}
48  
49  	@Override
50  	public void localStart(IAgentId agentId) throws PogamutException {
51  	}
52  
53  	@Override
54  	public void localStartPaused(IAgentId agentId) throws PogamutException {
55  	}
56  
57  	@Override
58  	public void localStop(IAgentId agentId) throws PogamutException {
59  	}
60  
61  	@Override
62  	public void kill() {
63  	}
64  	
65  	@Override
66  	public void pause() throws PogamutException {
67  	}
68  
69  	@Override
70  	public void prePause() throws PogamutException {
71  	}
72  
73  	@Override
74  	public void preResume() throws PogamutException {
75  	}
76  
77  	@Override
78  	public void preStart() throws PogamutException {
79  	}
80  
81  	@Override
82  	public void preStartPaused() throws PogamutException {
83  	}
84  
85  	@Override
86  	public void preStop() throws PogamutException {
87  	}
88  
89  	@Override
90  	public void reset() throws PogamutException {
91  	}
92  
93  	@Override
94  	public void resume() throws PogamutException {
95  	}
96  
97  	@Override
98  	public void start() throws PogamutException {
99  	}
100 
101 	@Override
102 	public void startPaused() throws PogamutException {
103 	}
104 
105 	@Override
106 	public void stop() throws PogamutException {
107 	}
108 
109 }