org.nakedobjects.viewer.lightweight
Interface DragInternal

All Known Implementing Classes:
AbstractValueView

public interface DragInternal


Method Summary
 void drag(InternalDrag drag)
          Indicates the drag started within this view's bounds is continuing.
 void dragCancel(InternalDrag drag)
          Default implementation - does nothing
 void dragFrom(InternalDrag drag)
          Indicates the start of a drag within this view's bounds.
 void dragTo(InternalDrag drag)
          Indicates the drag started within this view's bounds has been finished (although the location may now be outside of its bounds).
 

Method Detail

drag

public void drag(InternalDrag drag)
Indicates the drag started within this view's bounds is continuing. By default does nothing.


dragCancel

public void dragCancel(InternalDrag drag)
Default implementation - does nothing


dragFrom

public void dragFrom(InternalDrag drag)
Indicates the start of a drag within this view's bounds. By default does nothing.


dragTo

public void dragTo(InternalDrag drag)
Indicates the drag started within this view's bounds has been finished (although the location may now be outside of its bounds). By default does nothing.