aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorendolf <[email protected]>2007-10-27 09:11:51 +0000
committerendolf <[email protected]>2007-10-27 09:11:51 +0000
commit4232b3b2ab4c2dcc0efd78a170c12d3a0d17600c (patch)
tree83fb8f92421f4f2846b40341a4624417dc78c627
parent922670baa3299cd8b030216f50c31eae0ffb4b50 (diff)
Updated javadoc
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/trunk@209 e343933a-64c8-49c5-92b1-88f2ce3e89e8
-rw-r--r--coreAPI/src/java/net/java/games/input/AbstractComponent.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreAPI/src/java/net/java/games/input/AbstractComponent.java b/coreAPI/src/java/net/java/games/input/AbstractComponent.java
index c521276..90fef20 100644
--- a/coreAPI/src/java/net/java/games/input/AbstractComponent.java
+++ b/coreAPI/src/java/net/java/games/input/AbstractComponent.java
@@ -94,9 +94,9 @@ public abstract class AbstractComponent implements Component {
/**
* Returns the data from the last time the control has been polled.
* If this axis is a button, the value returned will be either 0.0f or 1.0f.
- * If this axis is normalized, the value returned will be between -1.0f and
+ * If this axis is normalised, the value returned will be between -1.0f and
* 1.0f.
- * @return 0.0f by default, can be overridden
+ * @return The data from the last time the control has been polled.
*/
public final float getPollData() {
if (!has_polled && !isRelative()) {