1 /*
2 * $Id: IDropCompleteListener.java,v 1.1 2010/07/09 14:29:11 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/07/09 14:29:11 $
13 */
14 public interface IDropCompleteListener extends FacesListener {
15
16 void componentCompleteDropped(DropCompleteEvent event)
17 throws AbortProcessingException;
18 }