1 /*
2 * $Id: IDroppableCapability.java,v 1.1 2010/06/09 12:48:06 oeuillot Exp $
3 */
4 package org.rcfaces.core.component.capability;
5
6 /**
7 *
8 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9 * @version $Revision: 1.1 $ $Date: 2010/06/09 12:48:06 $
10 */
11 public interface IDroppableCapability {
12 String[] getDropTypes();
13
14 void setDropTypes(String[] types);
15
16 int getDropEffects();
17
18 void setDropEffects(int effects);
19
20 boolean isDroppable();
21
22 void setDroppable(boolean droppable);
23 }