Package com.luciad.create.features
Interface IFeatureCreateCallback
public interface IFeatureCreateCallback
A callback interface that can signal that a feature was changed in the context of creation.
This class is used by IFeatureCreator
implementations.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onFeatureChanged
(Feature newFeature, ChangeStatus changeStatus) Can be implemented to handle the given feature.void
onFeatureCreateFailed
(ErrorInfo errorInfo) Can be implemented to handle the case when feature creation has failed.
-
Method Details
-
onFeatureChanged
Can be implemented to handle the given feature.- Parameters:
newFeature
- the new featurechangeStatus
- the status of this change
-
onFeatureCreateFailed
Can be implemented to handle the case when feature creation has failed.- Parameters:
errorInfo
- an info object that describes why creation failed
-