Class EditHandlesEvent

java.lang.Object
com.luciad.edit.handles.EditHandlesEvent
All Implemented Interfaces:
AutoCloseable

public final class EditHandlesEvent extends Object implements AutoCloseable
Event that indicates that the collection of edit handles has changed.
  • Constructor Details

    • EditHandlesEvent

      public EditHandlesEvent()
  • Method Details

    • finalize

      protected void finalize()
      Overrides:
      finalize in class Object
    • close

      public void close()
      Specified by:
      close in interface AutoCloseable
    • getAddedHandles

      @NotNull public List<@NotNull IEditHandle> getAddedHandles()
      Returns the list of handles that were newly added.
      Returns:
      the list of handles that were newly added.
    • getRemovedHandles

      @NotNull public List<@NotNull IEditHandle> getRemovedHandles()
      Returns the list of handles that were removed.
      Returns:
      the list of handles that were removed.
    • addAddedHandle

      public void addAddedHandle(@NotNull IEditHandle handle)
      Adds the given handle to this event as a handle that was newly added.
    • addRemovedHandle

      public void addRemovedHandle(@NotNull IEditHandle handle)
      Adds the given handle to this event as a handle that was removed.