blob: 0976a60a4057d942ebb6a2d384557acb3ea3cd61 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package NET.worlds.scape;
public class KeyUpEvent extends KeyEvent {
public KeyUpEvent(int time, WObject target, char key) {
super(time, null, target, key);
}
@Override
public boolean deliver(Object o) {
return o instanceof KeyUpHandler && ((KeyUpHandler)o).handle(this) ? true : super.deliver(o);
}
}
|