1 package jimm.datavision; 2 3 public interface Draggable { 4 5 /** 6 * Returns the string used to identify the object when dragging it. 7 * 8 * @return a string used to identify the object when dragging it 9 */ 10 public String dragString(); 11 12 } 13