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 Type
    Method
    Description
    Returns the selected DataTransformGui.
    org.gvsig.fmap.dal.feature.FeatureStore
    Returns the FeatureStore that can is used to apply the transformation.
    org.gvsig.andami.ui.mdiManager.IWindow
    Returns the window that has to be displayed to apply transformation.
    boolean
    Returns true if the selected FeatureStore has been selected from a layer.
    void
    setApplicable(boolean isApplicable)
    Returns true if the transformation can be applied.
    void
    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)
      Returns true if the transformation can be applied.
      Parameters:
      isApplicable - If the transformation can be applied.
    • getFeatureStore

      org.gvsig.fmap.dal.feature.FeatureStore getFeatureStore()
      Returns the FeatureStore that can is used to apply the transformation.
      Returns:
      The selected FeatureStore
    • isFeatureStoreLayer

      boolean isFeatureStoreLayer()
      Returns true if the selected FeatureStore has been selected from a layer.
      Returns:
      If the selected FeatureStore has been selected from a layer.
    • getDataTransformGui

      DataTransformGui getDataTransformGui()
      Returns the selected DataTransformGui. It is used to create the FeatureStoreTransform.
      Returns:
      The selected DataTransformGui.
    • setDataTransformGui

      void setDataTransformGui(DataTransformGui dataTransformGui)
      Sets the value of the transformation to apply. The wizard uses this transformation like the selected transformation.
      Parameters:
      dataTransformGui - The transformation to apply.