View Javadoc

1   /*
2    * $Id: IDragListener.java,v 1.1 2010/06/09 12:48:37 oeuillot Exp $
3    * 
4    */
5   package org.rcfaces.core.event;
6   
7   import javax.faces.event.AbortProcessingException;
8   import javax.faces.event.FacesListener;
9   
10  /**
11   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
12   * @version $Revision: 1.1 $ $Date: 2010/06/09 12:48:37 $
13   */
14  public interface IDragListener extends FacesListener {
15  
16      void componentDragged(DragEvent event) throws AbortProcessingException;
17  }