summaryrefslogtreecommitdiffstats
path: root/src/newt
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-08-10 08:44:00 +0200
committerSven Gothel <[email protected]>2013-08-10 08:44:00 +0200
commitb6be013a0e9dd570b4da42dbe8d88cc509a6aa99 (patch)
tree5dfb0618b8f2d9c0d8ff188364c8935b725c2fe3 /src/newt
parent8ef7760168c7051163c2a265c8662f1647a116c6 (diff)
MouseEvent API doc: Add W3C PointerEvent Reference
Diffstat (limited to 'src/newt')
-rw-r--r--src/newt/classes/com/jogamp/newt/event/MouseEvent.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/newt/classes/com/jogamp/newt/event/MouseEvent.java b/src/newt/classes/com/jogamp/newt/event/MouseEvent.java
index 93bbcc0b9..8533a37c6 100644
--- a/src/newt/classes/com/jogamp/newt/event/MouseEvent.java
+++ b/src/newt/classes/com/jogamp/newt/event/MouseEvent.java
@@ -37,6 +37,9 @@ package com.jogamp.newt.event;
/**
* Pointer event of type {@link PointerType}.
* <p>
+ * http://www.w3.org/Submission/pointer-events/#pointerevent-interface
+ * </p>
+ * <p>
* In case an instance represents multi-touch events, i.e. {@link #getPointerCount()} is &gt; 1,
* the first data element represents the pointer which triggered the action if individual to one pointer.<br/>
* For example {@link #getX(int) e.getX(0)} at {@link #EVENT_MOUSE_PRESSED} returns the data of the pressed pointer, etc.