| java.lang.Object org.netbeans.modules.visualweb.gravy.actions.Action org.netbeans.modules.visualweb.gravy.actions.ActionNoBlock
All known Subclasses: org.netbeans.modules.visualweb.gravy.debugger.actions.FinishDebugAction, org.netbeans.modules.visualweb.gravy.debugger.actions.AddBreakpointAction, org.netbeans.modules.visualweb.gravy.debugger.actions.StepOutAction, org.netbeans.modules.visualweb.gravy.debugger.actions.StartDebugAction, org.netbeans.modules.visualweb.gravy.debugger.actions.ToggleBreakpointAction, org.netbeans.modules.visualweb.gravy.debugger.actions.RunToCursorAction, org.netbeans.modules.visualweb.gravy.debugger.actions.PauseDebugAction, org.netbeans.modules.visualweb.gravy.debugger.actions.AddWatchAction, org.netbeans.modules.visualweb.gravy.debugger.actions.StepIntoAction, org.netbeans.modules.visualweb.gravy.debugger.actions.StepOverAction, org.netbeans.modules.visualweb.gravy.debugger.actions.ContinueDebugAction, org.netbeans.modules.visualweb.gravy.debugger.actions.DebuggerWindowAction,
ActionNoBlock | public class ActionNoBlock extends Action (Code) | | Ancestor class for all non-blocking actions.
This class re-implements all blocking calls from parent Action class to
non-blocking call.
author: Adam Sotona See Also: Action See Also: |
Constructor Summary | |
public | ActionNoBlock(String menuPath, String popupPath) | public | ActionNoBlock(String menuPath, String popupPath, String systemActionClass) | public | ActionNoBlock(String menuPath, String popupPath, Shortcut[] shortcuts) | public | ActionNoBlock(String menuPath, String popupPath, Shortcut shortcut) | public | ActionNoBlock(String menuPath, String popupPath, String systemActionClass, Shortcut[] shortcuts) | public | ActionNoBlock(String menuPath, String popupPath, String systemActionClass, Shortcut shortcut) |
ActionNoBlock | public ActionNoBlock(String menuPath, String popupPath)(Code) | | creates new non-blocking Action instance without API_MODE support
Parameters: menuPath - action path in main menu (use null value if menu mode is not supported) Parameters: popupPath - action path in popup menu (use null value if popup mode shell is not supported) |
ActionNoBlock | public ActionNoBlock(String menuPath, String popupPath, String systemActionClass)(Code) | | creates new non-blocking Action instance
Parameters: menuPath - action path in main menu (use null value if menu mode is not supported) Parameters: popupPath - action path in popup menu (use null value if popup mode is not supported) Parameters: systemActionClass - String class name of SystemAction (use null value if API mode is not supported) |
ActionNoBlock | public ActionNoBlock(String menuPath, String popupPath, Shortcut[] shortcuts)(Code) | | creates new Action instance without API_MODE support
Parameters: shortcuts - array of Shortcut instances (use null value if shortcut mode is not supported) Parameters: menuPath - action path in main menu (use null value if menu mode is not supported) Parameters: popupPath - action path in popup menu (use null value if popup mode shell is not supported) |
ActionNoBlock | public ActionNoBlock(String menuPath, String popupPath, Shortcut shortcut)(Code) | | creates new Action instance without API_MODE support
Parameters: shortcut - Shortcut (use null value if shortcut mode is not supported) Parameters: menuPath - action path in main menu (use null value if menu mode is not supported) Parameters: popupPath - action path in popup menu (use null value if popup mode shell is not supported) |
ActionNoBlock | public ActionNoBlock(String menuPath, String popupPath, String systemActionClass, Shortcut[] shortcuts)(Code) | | creates new Action instance
Parameters: shortcuts - array of Shortcut instances (use null value if shortcut mode is not supported) Parameters: menuPath - action path in main menu (use null value if menu mode is not supported) Parameters: popupPath - action path in popup menu (use null value if popup mode is not supported) Parameters: systemActionClass - String class name of SystemAction (use null value if API mode is not supported) |
ActionNoBlock | public ActionNoBlock(String menuPath, String popupPath, String systemActionClass, Shortcut shortcut)(Code) | | creates new Action instance
Parameters: shortcut - Shortcut String (use null value if menu mode is not supported) Parameters: menuPath - action path in main menu (use null value if menu mode is not supported) Parameters: popupPath - action path in popup menu (use null value if popup mode is not supported) Parameters: systemActionClass - String class name of SystemAction (use null value if API mode is not supported) |
performPopup | public void performPopup(Node[] nodes)(Code) | | performs action through popup menu
Parameters: nodes - nodes to be action performed on throws: UnsupportedOperationException - when action does not support popup mode |
performPopup | public void performPopup(ComponentOperator component)(Code) | | performs action through popup menu
Parameters: component - component to be action performed on throws: UnsupportedOperationException - when action does not support popup mode |
|
|