View Javadoc
1 package org.smartcomps.twister.engine.priv.core.dynamic; 2 3 import java.util.Date; 4 5 /*** 6 * An ExecutionEvent is created any time something of some importance 7 * happen to an ExecutionContext. Execution events can be used as an 8 * history of the execution of a process or one of its activities. 9 */ 10 public interface ExecutionEvent { 11 12 public static final int CREATION = 0; 13 public static final int EXECUTION = 0; 14 public static final int MESSAGE = 0; 15 public static final int TIMEOUT = 0; 16 17 public int getEventType(); 18 public void setEventType(int event); 19 20 public Date getEventDate(); 21 public void setEventDate(Date date); 22 23 public String getComments(); 24 public void setComments(String comments); 25 }

This page was automatically generated by Maven