1 /*
2 * $Id: IDroppableGridComponent.java,v 1.1 2010/07/09 14:29:11 oeuillot Exp $
3 */
4 package org.rcfaces.core.internal.capability;
5
6 /**
7 *
8 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9 * @version $Revision: 1.1 $ $Date: 2010/07/09 14:29:11 $
10 */
11 public interface IDroppableGridComponent {
12 boolean isBodyDroppable();
13
14 String[] getRowDropTypes();
15
16 boolean isRowDropTypesSetted();
17
18 int getRowDropEffects();
19
20 boolean isRowDropEffectsSetted();
21 }