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.DragEvent;
10 import org.rcfaces.core.event.IDragListener;
11
12
13
14
15
16 public class DragScriptListener extends AbstractScriptListener implements
17 IDragListener {
18 private static final String REVISION = "$Revision: 1.1 $";
19
20 public DragScriptListener(String scriptType, String command) {
21 super(scriptType, command);
22 }
23
24 public DragScriptListener() {
25 }
26
27 public void componentDragged(DragEvent event)
28 throws AbortProcessingException {
29 }
30 }