|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object bexee.event.Event
In bexee, all BPEL process instances are represented with a
ProcessContext
. The instances of ProcessContext
s contain Event
s which are used for the representation of
actually Activities.
Field Summary | |
static int |
DONE
|
static int |
WAITING
|
Constructor Summary | |
Event(Activity activity)
Create a new Event instance with a given
Activity . |
Method Summary | |
Activity |
getActivity()
Get the Activity associated with this Event . |
int |
getState()
Get the current state of this Event . |
java.lang.Object |
getValue(Variable variable)
Get a variable value from this Event . |
void |
putValue(Variable variable,
java.lang.Object value)
Add a variable value to this Event . |
void |
setState(int state)
Set the state of this Event . |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final int WAITING
public static final int DONE
Constructor Detail |
public Event(Activity activity)
Event
instance with a given
Activity
. The given Activity
is an
immutable property of an Event
.
activity
- The Activity
associated with this
Event
Method Detail |
public void setState(int state)
Event
.
state
- public int getState()
Event
.
public void putValue(Variable variable, java.lang.Object value)
Event
.
variable
- a Variable
instance used as a variable
identifier.value
- the variable value.public java.lang.Object getValue(Variable variable)
Event
.
variable
- the variable identifier.
public Activity getActivity()
Activity
associated with this Event
.
Event
.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |