1 package org.catacomb.druid.swing;
2
3 import java.awt.Point;
4 import java.awt.image.BufferedImage;
5
6
7 public interface ImageDragSource {
8
9 public BufferedImage getDragImage();
10
11
12 public Point getDragImageOffset();
13
14
15
16 }