aboutsummaryrefslogtreecommitdiffstats
path: root/ardor3d-jogl
diff options
context:
space:
mode:
authorJulien Gouesse <[email protected]>2016-03-20 16:38:22 +0100
committerJulien Gouesse <[email protected]>2016-03-20 16:38:22 +0100
commit57d2277a4dba4125c2ea888dfdc8efabb41e0e79 (patch)
treef2e160beb554fe027d5dc92a9d758e7cf7a3d9e3 /ardor3d-jogl
parent435bc8704e41eafb6425ed817426c5ac0dfd18e3 (diff)
Minor javadoc fixes
Diffstat (limited to 'ardor3d-jogl')
-rw-r--r--ardor3d-jogl/src/main/java/com/ardor3d/input/jogl/JoglNewtMouseWrapper.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/ardor3d-jogl/src/main/java/com/ardor3d/input/jogl/JoglNewtMouseWrapper.java b/ardor3d-jogl/src/main/java/com/ardor3d/input/jogl/JoglNewtMouseWrapper.java
index 5f64b46..23f7e32 100644
--- a/ardor3d-jogl/src/main/java/com/ardor3d/input/jogl/JoglNewtMouseWrapper.java
+++ b/ardor3d-jogl/src/main/java/com/ardor3d/input/jogl/JoglNewtMouseWrapper.java
@@ -3,7 +3,7 @@
*
* This file is part of Ardor3D.
*
- * Ardor3D is free software: you can redistribute it and/or modify it
+ * Ardor3D is free software: you can redistribute it and/or modify it
* under the terms of its license which may be found in the accompanying
* LICENSE file or at <http://www.ardor3d.com/LICENSE>.
*/
@@ -224,8 +224,9 @@ public class JoglNewtMouseWrapper implements MouseWrapper, MouseListener {
private void addNewState(final MouseEvent mouseEvent, final EnumMap<MouseButton, ButtonState> enumMap,
final Multiset<MouseButton> clicks) {
final MouseState newState = new MouseState(mouseEvent.getX(), getArdor3DY(mouseEvent), getDX(mouseEvent),
- getDY(mouseEvent), (int) (mouseEvent.isShiftDown() ? mouseEvent.getRotation()[0]
- : mouseEvent.getRotation()[1]), enumMap, clicks);
+ getDY(mouseEvent),
+ (int) (mouseEvent.isShiftDown() ? mouseEvent.getRotation()[0] : mouseEvent.getRotation()[1]), enumMap,
+ clicks);
synchronized (JoglNewtMouseWrapper.this) {
_upcomingEvents.add(newState);
@@ -242,7 +243,7 @@ public class JoglNewtMouseWrapper implements MouseWrapper, MouseListener {
}
/**
- * @param e
+ * @param me
* our mouseEvent
* @return the Y coordinate of the event, flipped relative to the component since we expect an origin in the lower
* left corner.