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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddAddedHandle(IEditHandle handle) Adds the given handle to this event as a handle that was newly added.voidaddRemovedHandle(IEditHandle handle) Adds the given handle to this event as a handle that was removed.voidclose()protected voidfinalize()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
-
EditHandlesEvent
public EditHandlesEvent()
-
-
Method Details
-
finalize
protected void finalize() -
close
public void close()- Specified by:
closein 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.- Parameters:
handle- the handle to add.
-
addRemovedHandle
Adds the given handle to this event as a handle that was removed.- Parameters:
handle- the handle to add.
-