1 package org.opencrx.kernel.activity1.cci; 14 15 public interface ActivityProcess 16 extends 17 org.opencrx.kernel.generic.cci.CrxObject { 18 25 public String getDescription( 26 ); 27 28 32 33 38 public void setDescription( 39 String newValue 40 ); 41 42 50 public String getName( 51 ); 52 53 61 public void setName( 62 String newValue 63 ); 64 65 73 public org.opencrx.kernel.activity1.cci.ActivityProcessState getStartState( 74 ); 75 76 84 public void setStartState( 85 org.opencrx.kernel.activity1.cci.ActivityProcessState newValue 86 ); 87 88 95 public void removeStartState ( 96 ); 97 98 108 public org.opencrx.kernel.activity1.cci.ActivityProcessState getState( 109 String id 110 ); 111 112 121 public java.util.Collection getState( 122 ); 123 124 131 public java.util.List getState( 132 org.opencrx.kernel.activity1.cci.ActivityProcessStateFilter filter 133 ); 134 135 143 public void addState ( 144 String id, 145 org.opencrx.kernel.activity1.cci.ActivityProcessState newValue 146 ); 147 148 155 public void addState ( 156 org.opencrx.kernel.activity1.cci.ActivityProcessState newValue 157 ); 158 159 165 public void removeState ( 166 String id 167 ); 168 178 public org.opencrx.kernel.activity1.cci.ActivityProcessTransition getTransition( 179 String id 180 ); 181 182 191 public java.util.Collection getTransition( 192 ); 193 194 201 public java.util.List getTransition( 202 org.opencrx.kernel.activity1.cci.ActivityProcessTransitionFilter filter 203 ); 204 205 213 public void addTransition ( 214 String id, 215 org.opencrx.kernel.activity1.cci.ActivityProcessTransition newValue 216 ); 217 218 225 public void addTransition ( 226 org.opencrx.kernel.activity1.cci.ActivityProcessTransition newValue 227 ); 228 229 235 public void removeTransition ( 236 String id 237 ); 238 } 242 | Popular Tags |