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

    • EditHandlesEvent Link icon

      public EditHandlesEvent()
  • Method Details Link icon

    • finalize Link icon

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

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

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

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

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

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