Uses of Class
org.apache.pivot.wtk.Action

Packages that use Action
org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
org.apache.pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins. 
 

Uses of Action in org.apache.pivot.wtk
 

Methods in org.apache.pivot.wtk that return Action
 Action Action.NamedActionDictionary.get(String id)
           
 Action Window.ActionMapping.getAction()
           
 Action Button.getAction()
          Returns the action associated with this button.
 Action Action.NamedActionDictionary.put(String id, Action action)
           
 Action Action.NamedActionDictionary.remove(String id)
           
 

Methods in org.apache.pivot.wtk with parameters of type Action
 void ButtonListener.actionChanged(Button button, Action previousAction)
          Called when a button's action has changed.
 void ButtonListener.Adapter.actionChanged(Button button, Action previousAction)
           
 void WindowActionMappingListener.actionChanged(Window.ActionMapping actionMapping, Action previousAction)
          Called when an action mapping's action has changed.
 void ActionClassListener.actionRemoved(String id, Action action)
          Called when an action has been removed from the named action dictionary.
 void ActionClassListener.Adapter.actionRemoved(String id, Action action)
           
 void ActionClassListener.actionUpdated(String id, Action previousAction)
          Called when an action has been updated in the named action dictionary.
 void ActionClassListener.Adapter.actionUpdated(String id, Action previousAction)
           
 void ActionListener.enabledChanged(Action action)
          Called when an action's enabled state has changed.
 Action Action.NamedActionDictionary.put(String id, Action action)
           
 void Window.ActionMapping.setAction(Action action)
           
 void Button.setAction(Action action)
          Sets this button's action.
 

Constructors in org.apache.pivot.wtk with parameters of type Action
Window.ActionMapping(Keyboard.KeyStroke keyStroke, Action action)
           
 

Uses of Action in org.apache.pivot.wtk.skin
 

Methods in org.apache.pivot.wtk.skin with parameters of type Action
 void ButtonSkin.actionChanged(Button button, Action previousAction)