public interface DataTransformManager
DataTransformGui
that is a class to establish
a relationship between a tranformation and a user interface.Modifier and Type | Method and Description |
---|---|
JDataTransformList |
createJDataTransformList(FeatureStore featureStore) |
JDialogDataTransformList |
createJDialogDataTransformList() |
DataTransformWizard |
createWizard()
Creates a wizard that can be used to apply the transformations.
|
DataTransformWizard |
createWizard(String transformName)
It creates a wizard and selects the transformation specified
by the parameter.
|
List<DataTransformGui> |
getDataTransforms()
Returns a list of the registered data transformations.
|
void |
registerDataTransform(String name,
Class<?> dataTransformGui)
Register a data transformation
|
void |
registerDataTransformWizard(Class<?> dataTransformWizard)
Register the GUI that is used to apply transformations.
|
void registerDataTransform(String name, Class<?> dataTransformGui)
name
- the name used to register the transformationfeatureTransformGui
- the class that contains the relationship between a
transformation
and its user interface. This class has to be an instance of
DataTransformGui
void registerDataTransformWizard(Class<?> dataTransformWizard)
dataTransformWizard
- the class that implements the GUI. This class has to be an
instance of DataTransformWizard
List<DataTransformGui> getDataTransforms()
DataTransformWizard createWizard() throws CreateWizardException
CreateWizardException
DataTransformWizard createWizard(String transformName) throws CreateWizardException, NotRegisteredTransformException
transformName
- The name of the transformation to apply.CreateWizardException
NotRegisteredTransformException
JDataTransformList createJDataTransformList(FeatureStore featureStore)
JDialogDataTransformList createJDialogDataTransformList()