01: package jimm.datavision;
02:
03: publicinterface Draggable {
04:
05: /**
06: * Returns the string used to identify the object when dragging it.
07: *
08: * @return a string used to identify the object when dragging it
09: */
10: publicString dragString();
11:
12: }