Class AbstractWizardGroup
- java.lang.Object
-
- org.openjump.core.ui.swing.wizard.AbstractWizardGroup
-
- All Implemented Interfaces:
WizardGroup
- Direct Known Subclasses:
AddDataStoreLayerWizard,AddRasterImageLayerWizard,AddWmsLayerWizard,AddWritableDataStoreLayerWizard,DataSourceQueryChooserOpenWizard,OpenFileWizard,OpenProjectWizard,SaveToDataStoreWizard,SaveToFileWizard
public abstract class AbstractWizardGroup extends Object implements WizardGroup
-
-
Constructor Summary
Constructors Constructor Description AbstractWizardGroup()AbstractWizardGroup(String name, Icon icon, String firstId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddPanel(int index, WizardPanel panel)voidaddPanel(WizardPanel panel)StringgetFirstId()IcongetIcon()StringgetName()List<WizardPanel>getPanels()voidinitialize(WorkbenchContext workbenchContext, WizardDialog dialog)voidremoveAllPanels()voidremovePanel(WizardPanel panel)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.openjump.core.ui.swing.wizard.WizardGroup
run
-
-
-
-
Method Detail
-
initialize
public void initialize(WorkbenchContext workbenchContext, WizardDialog dialog)
- Specified by:
initializein interfaceWizardGroup
-
getFirstId
public String getFirstId()
- Specified by:
getFirstIdin interfaceWizardGroup
-
getIcon
public Icon getIcon()
- Specified by:
getIconin interfaceWizardGroup
-
getName
public String getName()
- Specified by:
getNamein interfaceWizardGroup
-
addPanel
public void addPanel(WizardPanel panel)
-
addPanel
public void addPanel(int index, WizardPanel panel)
-
removePanel
public void removePanel(WizardPanel panel)
-
removeAllPanels
public void removeAllPanels()
-
getPanels
public List<WizardPanel> getPanels()
- Specified by:
getPanelsin interfaceWizardGroup
-
-