KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jimm > datavision > Draggable


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 JavaDoc dragString();
11
12 }
13
Popular Tags