Class JDialogStandalonePlugin

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

public class JDialogStandalonePlugin extends JDialogBase 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

    • JDialogStandalonePlugin

      public JDialogStandalonePlugin()
      Passthrough to JDialogBase constructor.
      See Also:
    • JDialogStandalonePlugin

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

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

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