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