View Javadoc

1   /*
2    * $Id: IDroppableItem.java,v 1.1 2010/06/09 12:49:22 oeuillot Exp $
3    */
4   package org.rcfaces.core.item;
5   
6   import javax.faces.model.SelectItem;
7   
8   /**
9    * 
10   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
11   * @version $Revision: 1.1 $ $Date: 2010/06/09 12:49:22 $
12   */
13  public interface IDroppableItem {
14      String[] getDropTypes(SelectItem droppedSelectItem);
15  
16      int getDropEffects(SelectItem droppedSelectItem);
17  }