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