1
2
3
4
5 package org.rcfaces.core.internal.listener;
6
7 import org.rcfaces.core.event.IKeyUpListener;
8 import org.rcfaces.core.event.KeyUpEvent;
9
10
11
12
13
14 public class KeyUpScriptListener extends AbstractScriptListener implements
15 IKeyUpListener {
16 private static final String REVISION = "$Revision: 1.18 $";
17
18 public KeyUpScriptListener(String scriptType, String command) {
19 super(scriptType, command);
20 }
21
22 public KeyUpScriptListener() {
23 }
24
25 public void processKeyUp(KeyUpEvent event) {
26 }
27 }