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(java.lang.String transformName)
It creates a wizard and selects the transformation specified
by the parameter.
|
java.util.List<DataTransformGui> |
getDataTransforms()
Returns a list of the registered data transformations.
|
void |
registerDataTransform(java.lang.String name,
java.lang.Class<?> dataTransformGui)
Register a data transformation
|
void |
registerDataTransformWizard(java.lang.Class<?> dataTransformWizard)
Register the GUI that is used to apply transformations.
|
void registerDataTransform(java.lang.String name,
java.lang.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
DataTransformGuivoid registerDataTransformWizard(java.lang.Class<?> dataTransformWizard)
dataTransformWizard - the class that implements the GUI. This class has to be an
instance of DataTransformWizardjava.util.List<DataTransformGui> getDataTransforms()
DataTransformWizard createWizard() throws CreateWizardException
CreateWizardExceptionDataTransformWizard createWizard(java.lang.String transformName) throws CreateWizardException, NotRegisteredTransformException
transformName - The name of the transformation to apply.CreateWizardExceptionNotRegisteredTransformExceptionJDataTransformList createJDataTransformList(FeatureStore featureStore)
JDialogDataTransformList createJDialogDataTransformList()