Class ActivityStackEvent
- java.lang.Object
-
- org.eclipse.birt.report.model.api.activity.ActivityStackEvent
-
public class ActivityStackEvent extends java.lang.Object
This event class identifies that the activity stack changes. This event includes the stack that change and the action causing this event.
-
-
Field Summary
Fields Modifier and Type Field Description static int
DONE
One record is executed or one transaction is committed.static int
REDONE
The latest record or transaction is redone.static int
ROLL_BACK
The outermost transaction is rolled back.static int
UNDONE
The latest record or transaction is undone.
-
Constructor Summary
Constructors Constructor Description ActivityStackEvent(org.eclipse.birt.report.model.activity.ActivityStack theStack, int theAction)
Constructs with the stack that changes and the action causing this event.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAction()
Returns the action which causes this event.org.eclipse.birt.report.model.activity.ActivityStack
getStack()
Returns the stack that changes.
-
-
-
Field Detail
-
DONE
public static final int DONE
One record is executed or one transaction is committed.- See Also:
- Constant Field Values
-
REDONE
public static final int REDONE
The latest record or transaction is redone.- See Also:
- Constant Field Values
-
UNDONE
public static final int UNDONE
The latest record or transaction is undone.- See Also:
- Constant Field Values
-
ROLL_BACK
public static final int ROLL_BACK
The outermost transaction is rolled back.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ActivityStackEvent
public ActivityStackEvent(org.eclipse.birt.report.model.activity.ActivityStack theStack, int theAction)
Constructs with the stack that changes and the action causing this event.- Parameters:
theStack
- the stack that changestheAction
- the action causing this event
-
-
Method Detail
-
getAction
public int getAction()
Returns the action which causes this event. The possible value is:DONE
REDONE
UNDONE
- Returns:
- the action which causes this event.
-
getStack
public org.eclipse.birt.report.model.activity.ActivityStack getStack()
Returns the stack that changes.- Returns:
- the stack that changes
-
-