aboutsummaryrefslogtreecommitdiffstats
path: root/src/newt/classes
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-06-11 00:14:35 +0200
committerSven Gothel <[email protected]>2010-06-11 00:14:35 +0200
commitc0ece5ebd634662f99f3217bb749e2c4795f9de6 (patch)
treeecf5a08e0b62cff0b00137ab2298e70afa846a68 /src/newt/classes
parent856a6e9ff524692bb4e2ac7b2f754bc7fee5f849 (diff)
NEWT Add: add<type>Listener(int index, <type>Listener l) ; get<type>Listener(int index) ; NEWTEvent attachments
NEWT Add: add<type>Listener(int index, <type>Listener l) ; get<type>Listener(int index) ; NEWTEvent attachments for listener to listener communication via object passing. This methodology is similar to the 'Atom' attachment of native systems. It is preferred to a 'consume()/isConsumed()' pattern, since it is less flexible and would 'endanger' system events. TODO: <type>Listener[] get<type>Listeners() doesn't work and was always buggy.
Diffstat (limited to 'src/newt/classes')
-rwxr-xr-xsrc/newt/classes/com/jogamp/newt/Window.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newt/classes/com/jogamp/newt/Window.java b/src/newt/classes/com/jogamp/newt/Window.java
index 9e338c94b..045a5eb72 100755
--- a/src/newt/classes/com/jogamp/newt/Window.java
+++ b/src/newt/classes/com/jogamp/newt/Window.java
@@ -1164,7 +1164,7 @@ public abstract class Window implements NativeWindow
}
}
- public MouseListener getWindowListener(int index) {
+ public MouseListener getMouseListener(int index) {
synchronized(mouseListeners) {
if(0>index) {
index = mouseListeners.size()-1;