| java.lang.Object net.infonode.docking.action.DockingWindowAction
All known Subclasses: net.infonode.docking.action.UndockWithAbortWindowAction, net.infonode.docking.action.RestoreWithAbortWindowAction, net.infonode.docking.action.CloseOthersWindowAction, net.infonode.docking.action.DockWindowAction, net.infonode.docking.action.MaximizeWindowAction, net.infonode.docking.action.StateDependentWindowAction, net.infonode.docking.action.MaximizeWithAbortWindowAction, net.infonode.docking.action.RestoreFocusWindowAction, net.infonode.docking.action.MinimizeWithAbortWindowAction, net.infonode.docking.action.RestoreParentWindowAction, net.infonode.docking.action.RestoreParentWithAbortWindowAction, net.infonode.docking.action.NullWindowAction, net.infonode.docking.action.CloseWithAbortWindowAction, net.infonode.docking.action.CloseWindowAction, net.infonode.docking.action.UndockWindowAction, net.infonode.docking.action.RestoreViewWithAbortTitleBarAction, net.infonode.docking.action.DockWithAbortWindowAction,
DockingWindowAction | abstract public class DockingWindowAction implements Serializable,IconProvider(Code) | | An action that can be performed on a
DockingWindow . It has a name and an optional icon.
author: $Author: jesper $ version: $Revision: 1.4 $ since: IDW 1.3.0 |
getAction | public SimpleAction getAction(DockingWindow window)(Code) | | Creates a simple action that performs this action on a window.
Parameters: window - the window on which to perform the action the action that performs this action on a window. |
getIcon | public Icon getIcon()(Code) | | Returns the optional icon of this action.
the optional icon of this action, null if there is no icon |
getName | abstract public String getName()(Code) | | Returns the name of this action.
the name of this action |
isPerformable | abstract public boolean isPerformable(DockingWindow window)(Code) | | Returns true if this action is performable on a window.
Parameters: window - the window on which the action will be performed true if this action is performable on the window |
perform | abstract public void perform(DockingWindow window)(Code) | | Performs this action on a window.
Parameters: window - the window on which to perform the action |
|
|