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