java.lang.Object
io.sf.carte.echosvg.dom.events.AbstractEvent
io.sf.carte.echosvg.dom.events.DOMUIEvent
io.sf.carte.echosvg.dom.svg12.SVGOMWheelEvent
- All Implemented Interfaces:
- OriginalEvent,- Cloneable,- Event,- UIEvent
SVG 1.2 mouse wheel event.
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprotected intThe number of clicks the mouse wheel has been moved.Fields inherited from class io.sf.carte.echosvg.dom.events.AbstractEventbubbleLimit, cancelable, currentTarget, defaultActions, eventPhase, isBubbling, namespaceURI, originalEvent, preventDefault, stopImmediatePropagation, stopPropagation, target, timeStamp, typeFields inherited from interface org.w3c.dom.events.EventAT_TARGET, BUBBLING_PHASE, CAPTURING_PHASE
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionintReturns the number of mouse wheel clicks.voidinitWheelEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, AbstractView viewArg, int wheelDeltaArg) Initializes this SVGOMWheelEvent object.voidinitWheelEventNS(String namespaceURIArg, String typeArg, boolean canBubbleArg, boolean cancelableArg, AbstractView viewArg, int wheelDeltaArg) Initializes this KeyboardEvent object.Methods inherited from class io.sf.carte.echosvg.dom.events.DOMUIEventgetDetail, getView, initUIEvent, initUIEventNS, splitMethods inherited from class io.sf.carte.echosvg.dom.events.AbstractEventaddDefaultAction, clone, cloneEvent, getBubbleLimit, getBubbles, getCancelable, getCurrentTarget, getDefaultActions, getDefaultPrevented, getEventPhase, getNamespaceURI, getOriginalEvent, getTarget, getTimeStamp, getType, initEvent, initEventNS, preventDefault, setBubbleLimit, stopImmediatePropagation, stopPropagationMethods inherited from class java.lang.Objectequals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.w3c.dom.events.EventgetBubbles, getCancelable, getCurrentTarget, getEventPhase, getTarget, getTimeStamp, getType, initEvent, preventDefault, stopPropagation
- 
Field Details- 
wheelDeltaprotected int wheelDeltaThe number of clicks the mouse wheel has been moved.
 
- 
- 
Constructor Details- 
SVGOMWheelEventpublic SVGOMWheelEvent()
 
- 
- 
Method Details- 
getWheelDeltapublic int getWheelDelta()Returns the number of mouse wheel clicks.
- 
initWheelEventpublic void initWheelEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, AbstractView viewArg, int wheelDeltaArg) Initializes this SVGOMWheelEvent object.- Parameters:
- typeArg- Specifies the event type.
- canBubbleArg- Specifies whether or not the event can bubble.
- cancelableArg- Specifies whether or not the event's default action can be prevented.
- viewArg- Specifies the- Event's- AbstractView.
- wheelDeltaArg- Specifices the number of clicks the mouse wheel has been moved.
 
- 
initWheelEventNSpublic void initWheelEventNS(String namespaceURIArg, String typeArg, boolean canBubbleArg, boolean cancelableArg, AbstractView viewArg, int wheelDeltaArg) Initializes this KeyboardEvent object.- Parameters:
- namespaceURIArg- Specifies the event namespace URI.
- typeArg- Specifies the event type.
- canBubbleArg- Specifies whether or not the event can bubble.
- cancelableArg- Specifies whether or not the event's default action can be prevented.
- viewArg- Specifies the- Event's- AbstractView.
- wheelDeltaArg- Specifices the number of clicks the mouse wheel has been moved.
 
 
-