Package org.gvsig.daltransform.swing
Interface DataTransformWizardPanel
- All Known Implementing Classes:
AbstractDataTransformWizardPanel,LoadLayerWizardPanel,SelectDataStoreWizardPanel,SelectTransformWizardPanel
public interface DataTransformWizardPanel
This class has to be inherited by all the classes
that appears on the transformation wizard. It contains
methods to manage the wizard.
- Author:
- Jorge Piera
-
Method Summary
Modifier and TypeMethodDescriptionReturn the panel to display.Returns a title for the panel.voidThis method is called when the last button is clickedvoidThis method is called when the next button is clickedvoidsetDataTransformWizard(DataTransformWizard dataTransformWizard) Sets the DataTransformWizard that contains information about all the wizard.voidThis method is called when the panel is displayed
-
Method Details
-
getPanelTitle
String getPanelTitle()Returns a title for the panel.- Returns:
- The panel title.
-
nextPanel
void nextPanel()This method is called when the next button is clicked -
lastPanel
void lastPanel()This method is called when the last button is clicked -
updatePanel
void updatePanel()This method is called when the panel is displayed -
getJPanel
JPanel getJPanel()Return the panel to display.- Returns:
- The panel.
-
setDataTransformWizard
Sets the DataTransformWizard that contains information about all the wizard.- Parameters:
dataTransformWizard- The wizard to set.
-