Class PropertyManagerPlugin

    • Constructor Detail

      • PropertyManagerPlugin

        public PropertyManagerPlugin​(PluginTool tool)
    • Method Detail

      • init

        protected void init()
        Description copied from class: Plugin
        Initialization method; override to add initialization for this plugin. This is where a plugin should acquire its services. When this method is called, all plugins have been instantiated in the tool.
        Overrides:
        init in class Plugin
        See Also:
        Plugin.init()
      • programActivated

        protected void programActivated​(Program program)
        Description copied from class: ProgramPlugin
        Subclass should override this method if it is interested when programs become active. Note: this method is called in response to a ProgramActivatedPluginEvent. At the time this method is called, the "currentProgram" variable will be set the new active program.
        Overrides:
        programActivated in class ProgramPlugin
        Parameters:
        program - the new program going active.
      • programDeactivated

        protected void programDeactivated​(Program program)
        Description copied from class: ProgramPlugin
        Subclass should override this method if it is interested when programs become inactive. Note: this method is called in response to a ProgramActivatedPluginEvent and there is a currently active program. At the time this method is called, the "currentProgram" variable will be set the new active program or null if there is no new active program.
        Overrides:
        programDeactivated in class ProgramPlugin
        Parameters:
        program - the old program going inactive.
      • selectionChanged

        protected void selectionChanged​(ProgramSelection sel)
        Description copied from class: ProgramPlugin
        Subclass should override this method if it is interested in program selection events.
        Overrides:
        selectionChanged in class ProgramPlugin
        Parameters:
        sel - selection could be null
      • dispose

        public void dispose()
        Description copied from class: Plugin
        Tells a plugin that it is no longer needed. The plugin should release any resources that it has. All actions, components, services will automatically be cleaned up.
        Overrides:
        dispose in class Plugin
        See Also:
        Plugin.dispose()