Package io.guise.framework.event
Class AbstractInputEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.globalmentor.event.AbstractEvent
-
- io.guise.framework.event.AbstractGuiseEvent
-
- io.guise.framework.event.AbstractInputEvent
-
- All Implemented Interfaces:
com.globalmentor.event.Event,GuiseEvent,InputEvent,java.io.Serializable
- Direct Known Subclasses:
AbstractFocusedInputEvent,AbstractGestureInputEvent
public abstract class AbstractInputEvent extends AbstractGuiseEvent implements InputEvent
An abstract event providing information on input such as a keystroke or a command.- Author:
- Garret Wilson
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractInputEvent(java.lang.Object source)Source constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconsume()Consumes the input associated with this event.booleanisConsumed()-
Methods inherited from class io.guise.framework.event.AbstractGuiseEvent
getSession
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface io.guise.framework.event.GuiseEvent
getSession
-
Methods inherited from interface io.guise.framework.event.InputEvent
getInput
-
-
-
-
Method Detail
-
isConsumed
public boolean isConsumed()
- Specified by:
isConsumedin interfaceInputEvent- Returns:
- Whether the input associated with this event has been consumed.
-
consume
public void consume()
Description copied from interface:InputEventConsumes the input associated with this event. The event is marked as consumed so that other listeners will be on notice not to consume the input.- Specified by:
consumein interfaceInputEvent
-
-