public abstract class Action extends Object
Modifier and Type | Field and Description |
---|---|
static int |
OPEN_EXISTING_WINDOW
Replace the current document in the same window.
|
static int |
OPEN_NEW_WINDOW
Open the destination document in a new window.
|
static int |
OPEN_USER_PREFERENCE
The viewer application should behave in accordance with the current user preference.
|
Constructor and Description |
---|
Action() |
Modifier and Type | Method and Description |
---|---|
abstract String |
getActionType()
Returns the type of action.
|
abstract String |
getActionTypeDesc()
Returns the action type description
|
Action |
getNextAction()
Returns the next Action to be performed after this Action.
|
void |
setNextAction(Action next)
Sets the next Action to be performed after this Action.
|
public static final int OPEN_USER_PREFERENCE
public static final int OPEN_NEW_WINDOW
public static final int OPEN_EXISTING_WINDOW
public abstract String getActionType()
public abstract String getActionTypeDesc()
public Action getNextAction()
public void setNextAction(Action next)
next
- the next Action to be performed after this Action.