1 package org.opencrx.kernel.activity1.cci; 14 15 public interface ActivityProcessTransition 16 extends 17 org.opencrx.kernel.generic.cci.CrxObject { 18 28 public org.opencrx.kernel.activity1.cci.ActivityProcessAction getAction( 29 String id 30 ); 31 32 41 public java.util.Collection getAction( 42 ); 43 44 51 public java.util.List getAction( 52 org.opencrx.kernel.activity1.cci.ActivityProcessActionFilter filter 53 ); 54 55 63 public void addAction ( 64 String id, 65 org.opencrx.kernel.activity1.cci.ActivityProcessAction newValue 66 ); 67 68 75 public void addAction ( 76 org.opencrx.kernel.activity1.cci.ActivityProcessAction newValue 77 ); 78 79 85 public void removeAction ( 86 String id 87 ); 88 95 public String getDescription( 96 ); 97 98 102 103 108 public void setDescription( 109 String newValue 110 ); 111 112 120 public String getName( 121 ); 122 123 131 public void setName( 132 String newValue 133 ); 134 135 143 public short getNewActivityState( 144 ); 145 146 154 public void setNewActivityState( 155 short newValue 156 ); 157 158 165 public Short getNewPercentComplete( 166 ); 167 168 172 173 178 public void setNewPercentComplete( 179 Short newValue 180 ); 181 182 190 public org.opencrx.kernel.activity1.cci.ActivityProcessState getNextState( 191 ); 192 193 201 public void setNextState( 202 org.opencrx.kernel.activity1.cci.ActivityProcessState newValue 203 ); 204 205 212 public void removeNextState ( 213 ); 214 215 223 public org.opencrx.kernel.activity1.cci.ActivityProcessState getPrevState( 224 ); 225 226 234 public void setPrevState( 235 org.opencrx.kernel.activity1.cci.ActivityProcessState newValue 236 ); 237 238 245 public void removePrevState ( 246 ); 247 248 } 252 | Popular Tags |