Class AbstractPlugIn

    • Field Detail

      • shortcutModifiers

        protected int shortcutModifiers
      • shortcutKeys

        protected int shortcutKeys
    • Constructor Detail

      • AbstractPlugIn

        public AbstractPlugIn()
      • AbstractPlugIn

        public AbstractPlugIn​(String name)
    • Method Detail

      • addParameter

        public void addParameter​(String name,
                                 Object value)
      • getParameter

        public Object getParameter​(String name)
      • getBooleanParam

        public Boolean getBooleanParam​(String name)
      • getIntegerParam

        public Integer getIntegerParam​(String name)
      • getDoubleParam

        public Double getDoubleParam​(String name)
      • getStringParam

        public String getStringParam​(String name)
      • setParameters

        public void setParameters​(Map<String,​Object> map)
        Description copied from interface: Recordable
        Set parameters with which to execute a plugin.
        Specified by:
        setParameters in interface Recordable
        Parameters:
        map - a map of parameters
      • initialize

        public void initialize​(PlugInContext context)
                        throws Exception
        Description copied from interface: PlugIn
        Called when Workbench starts up to allow plugins to initialize themselves.
        Specified by:
        initialize in interface PlugIn
        Parameters:
        context - context of the PlugIn
        Throws:
        Exception - if an exception occur during initialization
      • execute

        public boolean execute​(PlugInContext context)
                        throws Exception
        Execute the PlugIn.
        Specified by:
        execute in interface PlugIn
        Parameters:
        context - context of this PlugIn
        Returns:
        true if the PlugIn has been executed
        Throws:
        Exception - if an Exception occurs during execution
        See Also:
        ThreadedPlugIn
      • reportNothingToUndoYet

        protected void reportNothingToUndoYet​(PlugInContext context)
        Indicates that this plug-in either (1) is undoable but hasn't modified the system yet or (2) does not modify the system. In either case, the undo history will be preserved. If this method is not called, then this plug-in will be assumed to be non-undoable, and the undo history will be truncated.
        Parameters:
        context - plugin context
      • isRollingBackInvalidEdits

        protected boolean isRollingBackInvalidEdits​(PlugInContext context)
      • getShortcutKeyStroke

        public KeyStroke getShortcutKeyStroke()
        Description copied from interface: ShortcutEnabled
        Convenience Method for getShortcutKeys() and getShortcutModifiers()
        Specified by:
        getShortcutKeyStroke in interface ShortcutEnabled
        Returns:
        the KeyStroke associated to the shortcut
      • getEnableCheck

        public EnableCheck getEnableCheck()
        Use reflection to find an EnableCheck object defined by old method createEnableCheck in this plugin.
        Specified by:
        getEnableCheck in interface EnableChecked
        Returns:
        the EnableCheck defined the old way
      • getIcon

        public Icon getIcon()
        Plugin icon assumed to be 16x16 by default
        Specified by:
        getIcon in interface Iconified
      • getIcon

        public Icon getIcon​(Dimension dim)
        Use reflection to find the icon defined the old way by method getIcon or by attribute ICON.
        Specified by:
        getIcon in interface Iconified
        Parameters:
        dim - dimension of the icon
        Returns:
        the Icon of this PlugIn
      • getName

        public String getName()
        Description copied from interface: PlugIn
        Returns a very brief description of this PlugIn e.g. for display as a menu item
        Specified by:
        getName in interface PlugIn
        Returns:
        the class name, minus "PlugIn", with spaces inserted at the appropriate point before each uppercase+lowercase and lowercase+uppercase combination.
      • createName

        public static String createName​(Class<? extends PlugIn> plugInClass)
      • toActionListener

        public static ActionListener toActionListener​(PlugIn plugIn,
                                                      WorkbenchContext workbenchContext,
                                                      TaskMonitorManager taskMonitorManager)
        Parameters:
        plugIn - the plugin
        workbenchContext - context of the application
        taskMonitorManager - can be null if you do not wish to use the Task Monitor progress-reporting framework
        Returns:
        an ActionListener for this PlugIn