Uses of Class
net.infonode.docking.action.DockingWindowAction

Packages that use DockingWindowAction
net.infonode.docking.action Action classes for docking windows. 
net.infonode.docking.mouse   
net.infonode.docking.properties Property classes for docking windows. 
 

Uses of DockingWindowAction in net.infonode.docking.action
 

Subclasses of DockingWindowAction in net.infonode.docking.action
 class CloseOthersWindowAction
          Closes all tabs (with abort possibility) except the one belonging to the window the action is performed upon in the AbstractTabWindow parent of the window.
 class CloseWindowAction
           Closes a window using the DockingWindow.close() method.
 class CloseWithAbortWindowAction
          Closes a window using the DockingWindow.closeWithAbort() method.
 class DockWindowAction
          Docks a window using the DockingWindow.dock() method.
 class DockWithAbortWindowAction
          Docks a window using the DockingWindow.dockWithAbort() method.
 class MaximizeWindowAction
          Maximizes a TabWindow.
 class MaximizeWithAbortWindowAction
          Maximizes a TabWindow.
 class MinimizeWithAbortWindowAction
          Minimizes a window.
 class NullWindowAction
          Does nothing.
 class RestoreFocusWindowAction
          Uses the DockingWindow.restoreFocus() method to restore focus to the last focus owner that inside a window.
 class RestoreParentWindowAction
          Restores a window using the DockingWindow.restore() method.
 class RestoreParentWithAbortWindowAction
          Restores a window using the DockingWindow.restore() method.
 class RestoreViewWithAbortTitleBarAction
           Restores a window using the DockingWindow.restoreWithAbort() method.
 class RestoreWithAbortWindowAction
          Restores a window using the DockingWindow.restore() method.
 class StateDependentWindowAction
          Performs different actions on a window depending on the state of the window.
 class UndockWindowAction
          Undocks a window using the DockingWindow.undock(Point) method.
 class UndockWithAbortWindowAction
          Undocks a window using the DockingWindow.undockWithAbort(Point) method.
 

Fields in net.infonode.docking.action declared as DockingWindowAction
private  DockingWindowAction StateDependentWindowAction.maximizedAction
           
private  DockingWindowAction StateDependentWindowAction.minimizedAction
           
private  DockingWindowAction StateDependentWindowAction.normalAction
           
 

Methods in net.infonode.docking.action that return DockingWindowAction
 DockingWindowAction DockingWindowActionProperty.get(java.lang.Object valueContainer)
          Gets the DockingWindowAction value of this property in a value container.
private  DockingWindowAction StateDependentWindowAction.getActionProvider(DockingWindow window)
           
 

Methods in net.infonode.docking.action with parameters of type DockingWindowAction
 void DockingWindowActionProperty.set(java.lang.Object valueContainer, DockingWindowAction action)
          Sets the value of this property in a value container.
 

Constructors in net.infonode.docking.action with parameters of type DockingWindowAction
StateDependentWindowAction(DockingWindowAction normalAction, DockingWindowAction minimizedAction, DockingWindowAction maximizedAction)
          Constructor.
 

Uses of DockingWindowAction in net.infonode.docking.mouse
 

Fields in net.infonode.docking.mouse declared as DockingWindowAction
private  DockingWindowAction DockingWindowActionMouseButtonListener.action
           
 

Constructors in net.infonode.docking.mouse with parameters of type DockingWindowAction
DockingWindowActionMouseButtonListener(int button, DockingWindowAction action)
          Creates a listener which performs an action when a mouse button is clicked.
DockingWindowActionMouseButtonListener(int eventId, int button, DockingWindowAction action)
          Creates a listener which performs an action when a mouse button is pressed, released or clicked.
DockingWindowActionMouseButtonListener(int eventId, int button, int keyMask, DockingWindowAction action, boolean consumeEvent)
          Creates a listener which performs an action when a mouse button is pressed, released or clicked, with an additional key mask.
 

Uses of DockingWindowAction in net.infonode.docking.properties
 

Methods in net.infonode.docking.properties that return DockingWindowAction
 DockingWindowAction WindowTabButtonProperties.getAction()
          Gets the DockingWindowAction that is performed when the button is clicked.
 

Methods in net.infonode.docking.properties with parameters of type DockingWindowAction
 WindowTabButtonProperties WindowTabButtonProperties.setAction(DockingWindowAction action)
          Sets the DockingWindowAction that will be performed when the button is clicked.
 WindowTabButtonProperties WindowTabButtonProperties.setTo(DockingWindowAction action)
          Sets the action is performed when the button is clicked.