feisty meow concerns codebase  2.140
IDragonDropDataProvider.java
Go to the documentation of this file.
1 package org.feistymeow.dragdrop;
2 
3 import java.util.List;
4 import java.awt.Point;
5 
18 public interface IDragonDropDataProvider
19 {
25  public List<Object> provideDragList();
26 
31  public boolean consumeDropList(List<Object> dropSet, Point cursor);
32 }
boolean consumeDropList(List< Object > dropSet, Point cursor)