public class TriggerActions extends Hashtable<String,Vector<Action>>
Modifier and Type | Field and Description |
---|---|
static String |
BLUR |
static String |
CALCULATE |
static String |
DOC_CLOSE |
static String |
DOC_DID_PRINT |
static String |
DOC_DID_SAVE |
static String |
DOC_WILL_PRINT |
static String |
DOC_WILL_SAVE |
static String |
FOCUS |
static String |
FORMAT |
static String |
KEYSTROKE |
static String |
MOUSE_DOWN |
static String |
MOUSE_ENTERED |
static String |
MOUSE_EXITED |
static String |
MOUSE_UP |
static String |
PAGE_CLOSE |
static String |
PAGE_OPEN |
static String |
VALIDATE |
Constructor and Description |
---|
TriggerActions() |
Modifier and Type | Method and Description |
---|---|
void |
clear()
Overrides Hashtable method to keep track of modifications.
|
Vector<Action> |
getBlurActions()
Get the list of actions to be performed on blur (focus lost).
|
Vector<Action> |
getCalculateActions()
Get the list of actions to be performed when another field changes
|
Vector<Action> |
getDocCloseActions()
Get the list of actions to be performed when the document is closed.
|
Vector<Action> |
getDocDidPrintActions()
Get the list of actions to be performed when the document has printed.
|
Vector<Action> |
getDocDidSaveActions()
Get the list of actions to be performed when the document has been saved.
|
Vector<Action> |
getDocWillPrintActions()
Get the list of actions to be performed when the document will print.
|
Vector<Action> |
getDocWillSaveActions()
Get the list of actions to be performed when the document will be saved.
|
Vector<Action> |
getFocusActions()
Get the list of actions to be performed when focus is gained.
|
Vector<Action> |
getFormatActions()
Get the list of actions to be executed before a field is formatted
|
Vector<Action> |
getKeystrokeActions()
Get the list of actions to be performed on a keystroke.
|
Vector<Action> |
getMouseDownActions()
Get the list of action to be executed on Mouse Down events as a Vector of Actions.
|
Vector<Action> |
getMouseEnteredActions()
Get the list of action to be executed on Mouse Entered events as a Vector of Actions.
|
Vector<Action> |
getMouseExitedActions()
Get the list of action to be executed on Mouse Exited events as a Vector of Actions.
|
Vector<Action> |
getMouseUpActions()
Get the list of action to be executed on Mouse Up events as a Vector of Actions.
|
Vector<Action> |
getPageCloseActions()
Get the list of actions to be performed when the page is closed.
|
Vector<Action> |
getPageOpenActions()
Get the list of actions to be performed when the page is opened.
|
Vector<Action> |
getValidateActions()
Get the list of actions to be performed when a field value is changed
|
boolean |
isModified()
Check to see if the TriggerActions object has been modified
|
Vector<Action> |
put(String key,
Vector<Action> value)
Overrides Hashtable method to keep track of modifications.
|
void |
putAll(Map<? extends String,? extends Vector<Action>> t) |
Vector<Action> |
remove(Object key)
Overrides Hashtable method to keep track of modifications.
|
void |
setModified(boolean modified)
Set the modified status of TriggerActions
|
clone, compute, computeIfAbsent, computeIfPresent, contains, containsKey, containsValue, elements, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keys, keySet, merge, putIfAbsent, remove, replace, replace, replaceAll, size, toString, values
public static String MOUSE_ENTERED
public static String MOUSE_EXITED
public static String MOUSE_UP
public static String MOUSE_DOWN
public static String VALIDATE
public static String CALCULATE
public static String FORMAT
public static String KEYSTROKE
public static String BLUR
public static String FOCUS
public static String PAGE_OPEN
public static String PAGE_CLOSE
public static String DOC_CLOSE
public static String DOC_WILL_SAVE
public static String DOC_DID_SAVE
public static String DOC_WILL_PRINT
public static String DOC_DID_PRINT
public Vector<Action> getMouseEnteredActions()
public Vector<Action> getMouseExitedActions()
public Vector<Action> getMouseDownActions()
public Vector<Action> getMouseUpActions()
public Vector<Action> getFormatActions()
public Vector<Action> getValidateActions()
public Vector<Action> getCalculateActions()
public Vector<Action> getKeystrokeActions()
public Vector<Action> getBlurActions()
public Vector<Action> getFocusActions()
public Vector<Action> getPageOpenActions()
public Vector<Action> getPageCloseActions()
public Vector<Action> getDocCloseActions()
public Vector<Action> getDocWillSaveActions()
public Vector<Action> getDocDidSaveActions()
public Vector<Action> getDocWillPrintActions()
public Vector<Action> getDocDidPrintActions()
public Vector<Action> remove(Object key) throws NullPointerException
public Vector<Action> put(String key, Vector<Action> value) throws NullPointerException
public boolean isModified()
public void setModified(boolean modified)
modified
- A boolean representing whether or not the TriggerActions are being marked as modifiedpublic void clear()