Package com.luciad.create.geometries
Interface IGeometryCreateCallback
public interface IGeometryCreateCallback
A callback interface that can signal that a geometry was changed in the context of creation.
This class is used by IGeometryCreator
implementations.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onGeometryChanged
(Geometry newGeometry, ChangeStatus changeStatus) Can be implemented to handle the given geometry.void
onGeometryCreateFailed
(ErrorInfo errorInfo) Can be implemented to handle the case when geometry creation has failed.
-
Method Details
-
onGeometryChanged
Can be implemented to handle the given geometry.- Parameters:
newGeometry
- the new geometry, cannot benull
changeStatus
- the status of this change
-
onGeometryCreateFailed
Can be implemented to handle the case when geometry creation has failed.- Parameters:
errorInfo
- an info object that describes why creation failed.
-