Package com.luciad.edit.handles
Class EditHandlesEvent
java.lang.Object
com.luciad.edit.handles.EditHandlesEvent
- All Implemented Interfaces:
AutoCloseable
Event that indicates that the collection of
edit handles
has changed.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addAddedHandle
(IEditHandle handle) Adds the given handle to this event as a handle that was newly added.void
addRemovedHandle
(IEditHandle handle) Adds the given handle to this event as a handle that was removed.void
close()
protected void
finalize()
List
<@NotNull IEditHandle> Returns the list of handles that were newly added.List
<@NotNull IEditHandle> Returns the list of handles that were removed.
-
Constructor Details
-
Method Details
-
finalize
protected void finalize() -
close
public void close()- Specified by:
close
in interfaceAutoCloseable
-
getAddedHandles
Returns the list of handles that were newly added.- Returns:
- the list of handles that were newly added.
-
getRemovedHandles
Returns the list of handles that were removed.- Returns:
- the list of handles that were removed.
-
addAddedHandle
Adds the given handle to this event as a handle that was newly added. -
addRemovedHandle
Adds the given handle to this event as a handle that was removed.
-