View Javadoc

1   /*
2    * $Id: DropCompleteScriptListener.java,v 1.1 2010/07/09 14:29:11 oeuillot Exp $
3    * 
4    */
5   package org.rcfaces.core.internal.listener;
6   
7   import javax.faces.event.AbortProcessingException;
8   
9   import org.rcfaces.core.event.DropCompleteEvent;
10  import org.rcfaces.core.event.IDropCompleteListener;
11  
12  /**
13   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
14   * @version $Revision: 1.1 $ $Date: 2010/07/09 14:29:11 $
15   */
16  public class DropCompleteScriptListener extends AbstractScriptListener
17          implements IDropCompleteListener {
18      private static final String REVISION = "$Revision: 1.1 $";
19  
20      public DropCompleteScriptListener(String scriptType, String command) {
21          super(scriptType, command);
22      }
23  
24      public DropCompleteScriptListener() {
25      }
26  
27      public void componentCompleteDropped(DropCompleteEvent event)
28              throws AbortProcessingException {
29      }
30  }