Class TLspEditHandleResultFX
java.lang.Object
com.luciad.view.lightspeed.editor.operation.ALspEditHandleResult<Event>
com.luciad.view.lightspeed.editor.operation.TLspEditHandleResultFX
Implementation of
ALspEditHandleResult
for javafx.event.Event
.- Since:
- 2020.0
- See Also:
-
Constructor Summary
ConstructorDescriptionTLspEditHandleResultFX
(TLspEditOperation aEditOperation, Event aProcessedEvent, ELspInteractionStatus aInteractionStatus) Creates a newTLspEditHandleResult
with the givenTLspEditOperation
and event.TLspEditHandleResultFX
(Collection<TLspEditOperation> aEditOperations, Event aProcessedEvent, ELspInteractionStatus aInteractionStatus) Creates a newTLspEditHandleResult
with the givenTLspEditOperation
objects and event.TLspEditHandleResultFX
(Event aProcessedEvent, ELspInteractionStatus aInteractionStatus) Creates a newTLspEditHandleResult
withoutTLspEditOperation
and the given event and interaction status. -
Method Summary
Modifier and TypeMethodDescriptionfinal Event
Returns the partially consumed interaction event ornull
when the incoming event was used completely.Methods inherited from class com.luciad.view.lightspeed.editor.operation.ALspEditHandleResult
getEditOperations, getInteractionStatus, toString
-
Constructor Details
-
TLspEditHandleResultFX
Creates a newTLspEditHandleResult
withoutTLspEditOperation
and the given event and interaction status.- Parameters:
aProcessedEvent
- an eventaInteractionStatus
- the interaction status of this operation.
-
TLspEditHandleResultFX
public TLspEditHandleResultFX(TLspEditOperation aEditOperation, Event aProcessedEvent, ELspInteractionStatus aInteractionStatus) Creates a newTLspEditHandleResult
with the givenTLspEditOperation
and event.- Parameters:
aEditOperation
- an edit operationaProcessedEvent
- an eventaInteractionStatus
- the interaction status of this operation.
-
TLspEditHandleResultFX
public TLspEditHandleResultFX(Collection<TLspEditOperation> aEditOperations, Event aProcessedEvent, ELspInteractionStatus aInteractionStatus) Creates a newTLspEditHandleResult
with the givenTLspEditOperation
objects and event.- Parameters:
aEditOperations
- a collection of edit operationsaProcessedEvent
- an eventaInteractionStatus
- the interaction status of this operation.
-
-
Method Details
-
getProcessedEvent
Description copied from class:ALspEditHandleResult
Returns the partially consumed interaction event ornull
when the incoming event was used completely.- Specified by:
getProcessedEvent
in classALspEditHandleResult<Event>
- Returns:
- the partially consumed interaction event or
null
when the incoming event was used completely.
-