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 Link icon

    Modifier and Type
    Method
    Description
    void
    onGeometryChanged(Geometry newGeometry, ChangeStatus changeStatus)
    Can be implemented to handle the given geometry.
    void
    Can be implemented to handle the case when geometry creation has failed.
  • Method Details Link icon

    • onGeometryChanged Link icon

      void onGeometryChanged(@NotNull Geometry newGeometry, @NotNull ChangeStatus changeStatus)
      Can be implemented to handle the given geometry.
      Parameters:
      newGeometry - the new geometry, cannot be null
      changeStatus - the status of this change
    • onGeometryCreateFailed Link icon

      void onGeometryCreateFailed(@NotNull ErrorInfo errorInfo)
      Can be implemented to handle the case when geometry creation has failed.
      Parameters:
      errorInfo - an info object that describes why creation failed.