Class JDialogStandaloneScriptablePlugin

All Implemented Interfaces:
ScriptableActionInterface, DialogDefaultsInterface, ActionListener, FocusListener, ItemListener, WindowListener, ImageObserver, MenuContainer, Serializable, EventListener, Accessible, RootPaneContainer, WindowConstants

public abstract class JDialogStandaloneScriptablePlugin extends JDialogScriptableBase implements WindowListener
This is an abstract class which should be subclassed by Generic plug-in dialogs which want to support being run with the -p command line switch without the rest of MIPAV (using the -hide option). If the subclass overrides windowClosing(), it should call super.windowClosing() in the first line of the method. The subclass's frame should also call windowClosing(null) directly when a cancel or close button is pressed.
See Also:
  • Constructor Details

    • JDialogStandaloneScriptablePlugin

      public JDialogStandaloneScriptablePlugin()
      Passthrough to JDialogScriptableBase constructor.
      See Also:
    • JDialogStandaloneScriptablePlugin

      public JDialogStandaloneScriptablePlugin(boolean modal)
      Passthrough to JDialogScriptableBase constructor.
      Parameters:
      modal - Whether the dialog is modal.
      See Also:
    • JDialogStandaloneScriptablePlugin

      public JDialogStandaloneScriptablePlugin(Frame parent, boolean modal)
      Passthrough to JDialogScriptableBase constructor.
      Parameters:
      parent - The parent frame.
      modal - Whether the dialog is modal.
      See Also:
    • JDialogStandaloneScriptablePlugin

      public JDialogStandaloneScriptablePlugin(Dialog parent, boolean modal)
      Passthrough to JDialogScriptableBase constructor.
      Parameters:
      parent - The parent dialog.
      modal - Whether this dialog is modal.
      See Also:
  • Method Details