com.qoppa.pdfViewer.actions
Class TriggerActions

java.lang.Object
  extended byjava.util.Dictionary
      extended byjava.util.Hashtable
          extended bycom.qoppa.pdfViewer.actions.TriggerActions
All Implemented Interfaces:
Cloneable, Map, Serializable

public class TriggerActions
extends Hashtable

Utility class to encapsulate a list of actions triggered by different mouse events such as mouse entered, mouse exited, mouse up and mouse down. TriggerActions.getMouseDownActions for instance returns a vector of all actions to be executed on a mouse down event. This utility class is used by the Annotation class for instance since an annotation may have trigger actions associated with it.

See Also:
Serialized Form

Constructor Summary
TriggerActions()
           
 
Method Summary
 Vector getMouseDownActions()
          Get the list of action to be executed on Mouse Down events as a Vector of Actions.
 Vector getMouseEnteredActions()
          Get the list of action to be executed on Mouse Entered events as a Vector of Actions.
 Vector getMouseExitedActions()
          Get the list of action to be executed on Mouse Exited events as a Vector of Actions.
 Vector getMouseUpActions()
          Get the list of action to be executed on Mouse Up events as a Vector of Actions.
 
Methods inherited from class java.util.Hashtable
clear, clone, contains, containsKey, containsValue, elements, entrySet, equals, get, hashCode, isEmpty, keys, keySet, put, putAll, remove, size, toString, values
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TriggerActions

public TriggerActions()
Method Detail

getMouseEnteredActions

public Vector getMouseEnteredActions()
Get the list of action to be executed on Mouse Entered events as a Vector of Actions.


getMouseExitedActions

public Vector getMouseExitedActions()
Get the list of action to be executed on Mouse Exited events as a Vector of Actions.


getMouseDownActions

public Vector getMouseDownActions()
Get the list of action to be executed on Mouse Down events as a Vector of Actions.


getMouseUpActions

public Vector getMouseUpActions()
Get the list of action to be executed on Mouse Up events as a Vector of Actions.