Package com.luciad.edit.handles
Interface IEditHandlesObserver
public interface IEditHandlesObserver
An observer that allows you to receive change events from an
IEditHandles when the collection of handles changes.-
Method Summary
Modifier and TypeMethodDescriptionvoidonEditHandlesChanged(EditHandlesEvent editHandlesEvent) This method is called when a handle is added or removed from anIEditHandles.voidThis method is called whenIEditHandleshas become invalid, and can not be used anymore for the currently edited object.
-
Method Details
-
onEditHandlesChanged
This method is called when a handle is added or removed from anIEditHandles.- Parameters:
editHandlesEvent- the event that describes the change
-
onEditHandlesInvalid
void onEditHandlesInvalid()This method is called whenIEditHandleshas become invalid, and can not be used anymore for the currently edited object.This allows the editing code to generate a new set of handles for the edited object.
-