Added Android code
[wl-app.git] / Android / webViewMarker / src / main / java / com / blahti / drag / DragListener.java
1 package com.blahti.drag;
2
3 /**
4  * Interface to receive notifications when a drag starts or stops
5  */
6 public interface DragListener {
7     void onDragStart(DragSource source, Object info, DragController.DragBehavior dragBehavior);
8     void onDragEnd();
9 }