1 /*
2 * $Id: IDraggableCapability.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 IDraggableCapability {
12 String[] getDragTypes();
13
14 void setDragTypes(String[] types);
15
16 int getDragEffects();
17
18 void setDragEffects(int effects);
19
20 boolean isDraggable();
21
22 void setDraggable(boolean draggable);
23 }