Package io.guise.framework.event
Class AbstractFocusedGestureInputEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.globalmentor.event.AbstractEvent
-
- io.guise.framework.event.AbstractGuiseEvent
-
- io.guise.framework.event.AbstractInputEvent
-
- io.guise.framework.event.AbstractGestureInputEvent
-
- io.guise.framework.event.AbstractFocusedGestureInputEvent
-
- All Implemented Interfaces:
com.globalmentor.event.Event
,FocusedInputEvent
,GestureInputEvent
,GuiseEvent
,InputEvent
,java.io.Serializable
- Direct Known Subclasses:
AbstractKeyboardEvent
public abstract class AbstractFocusedGestureInputEvent extends AbstractGestureInputEvent implements FocusedInputEvent
An abstract gesture input event such as a keypress that is directed towards the component with input focus.- Author:
- Garret Wilson
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractFocusedGestureInputEvent(java.lang.Object source, Key... keys)
Source constructor.
-
Method Summary
-
Methods inherited from class io.guise.framework.event.AbstractGestureInputEvent
getKeys, hasAltKey, hasControlKey, hasShiftKey
-
Methods inherited from class io.guise.framework.event.AbstractInputEvent
consume, isConsumed
-
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.GestureInputEvent
getInput
-
Methods inherited from interface io.guise.framework.event.GuiseEvent
getSession
-
Methods inherited from interface io.guise.framework.event.InputEvent
consume, isConsumed
-
-
-
-
Constructor Detail
-
AbstractFocusedGestureInputEvent
public AbstractFocusedGestureInputEvent(java.lang.Object source, Key... keys)
Source constructor.- Parameters:
source
- The object on which the event initially occurred.keys
- The keys that were pressed when this event was generated.- Throws:
java.lang.NullPointerException
- if the given source and/or keys isnull
.
-
-