Class ParameterSelectionDialog<P extends Parameters>

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, Accessible, RootPaneContainer, WindowConstants
Direct Known Subclasses:
DefaultParamsDialog, RemoveParametersDialog

public abstract class ParameterSelectionDialog<P extends Parameters> extends JDialog
Author:
User #2
See Also:
  • Field Details

  • Constructor Details

    • ParameterSelectionDialog

      public ParameterSelectionDialog(Frame owner, String titleText)
    • ParameterSelectionDialog

      public ParameterSelectionDialog(Dialog owner, String titleText)
  • Method Details

    • doOKaction

      protected abstract void doOKaction(List<String> selectedParamNames)
    • init

      public abstract void init(P params)
      Initialize the list for the Parameters object.

      Subclass implementations should call init(params,includeRandomSeed,selectAll) to get the list initialized appropriately

      Parameters:
      params - The Parameters object to provide selection from
    • init

      protected void init(P params, boolean includeRandomSeed, boolean selectAll)