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