Class ActivityStackEvent

java.lang.Object
org.eclipse.birt.report.model.api.activity.ActivityStackEvent

public class ActivityStackEvent extends 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 final int
    One record is executed or one transaction is committed.
    static final int
    The latest record or transaction is redone.
    static final int
    The outermost transaction is rolled back.
    static final int
    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

    Modifier and Type
    Method
    Description
    int
    Returns the action which causes this event.
    org.eclipse.birt.report.model.activity.ActivityStack
    Returns the stack that changes.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • DONE

      public static final int DONE
      One record is executed or one transaction is committed.
      See Also:
    • REDONE

      public static final int REDONE
      The latest record or transaction is redone.
      See Also:
    • UNDONE

      public static final int UNDONE
      The latest record or transaction is undone.
      See Also:
    • ROLL_BACK

      public static final int ROLL_BACK
      The outermost transaction is rolled back.
      See Also:
  • Constructor Details

    • 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 changes
      theAction - the action causing this event
  • Method Details

    • 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