Back to project page GhostStories.
The source code is released under:
GNU General Public License
If you think the Android project GhostStories listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.interfaces; //ww w.j ava 2s . c o m /** * Interface used by components that are able to be dragged. A dragged component * can specify the data to be transmitted via the {@link #getDragData()} function. */ public interface IDraggable<T> { /** * @return The data associated with this draggable object */ public T getDragData(); }