Package org.gvsig.daltransform.swing
Interface DataTransformWizard
- All Known Implementing Classes:
DefaultDataTransformWizard
public interface DataTransformWizard
This interface has to be implemented by the transformation
wizard. It has to provide
- Author:
- Jorge Piera
-
Method Summary
Modifier and TypeMethodDescriptionReturns the selectedDataTransformGui.org.gvsig.fmap.dal.feature.FeatureStoreReturns theFeatureStorethat can is used to apply the transformation.org.gvsig.andami.ui.mdiManager.IWindowReturns the window that has to be displayed to apply transformation.booleanReturnstrueif the selectedFeatureStorehas been selected from a layer.voidsetApplicable(boolean isApplicable) Returnstrueif the transformation can be applied.voidsetDataTransformGui(DataTransformGui dataTransformGui) Sets the value of the transformation to apply.
-
Method Details
-
getWindow
org.gvsig.andami.ui.mdiManager.IWindow getWindow()Returns the window that has to be displayed to apply transformation.- Returns:
- The window to display.
-
setApplicable
void setApplicable(boolean isApplicable) Returnstrueif the transformation can be applied.- Parameters:
isApplicable- If the transformation can be applied.
-
getFeatureStore
org.gvsig.fmap.dal.feature.FeatureStore getFeatureStore()Returns theFeatureStorethat can is used to apply the transformation.- Returns:
- The selected
FeatureStore
-
isFeatureStoreLayer
boolean isFeatureStoreLayer()Returnstrueif the selectedFeatureStorehas been selected from a layer.- Returns:
- If the selected
FeatureStorehas been selected from a layer.
-
getDataTransformGui
DataTransformGui getDataTransformGui()Returns the selectedDataTransformGui. It is used to create theFeatureStoreTransform.- Returns:
- The selected
DataTransformGui.
-
setDataTransformGui
Sets the value of the transformation to apply. The wizard uses this transformation like the selected transformation.- Parameters:
dataTransformGui- The transformation to apply.
-