View Javadoc

1   /*
2    * $Id: KeyPressScriptListener.java,v 1.18 2011/06/16 09:29:41 jbmeslin Exp $
3    * 
4    */
5   package org.rcfaces.core.internal.listener;
6   
7   import org.rcfaces.core.event.IKeyPressListener;
8   import org.rcfaces.core.event.KeyPressEvent;
9   
10  /**
11   * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
12   * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:41 $
13   */
14  public class KeyPressScriptListener extends AbstractScriptListener implements
15          IKeyPressListener {
16      private static final String REVISION = "$Revision: 1.18 $";
17  
18      public KeyPressScriptListener(String scriptType, String command) {
19          super(scriptType, command);
20      }
21  
22      public KeyPressScriptListener() {
23      }
24  
25      public void processKeyPress(KeyPressEvent event) {
26      }
27  }