11 lines
214 B
Java
11 lines
214 B
Java
package javax.baja.ui.transfer;
|
|
|
|
import javax.baja.gx.Graphics;
|
|
import javax.baja.gx.RectGeom;
|
|
|
|
public interface DragRenderer {
|
|
RectGeom getDragEffectRectGeom();
|
|
|
|
void paintDragEffect(Graphics graphics);
|
|
}
|