FileDocCategorySizeDatePackage
AbstractGhostDropManager.javaAPI DocExample754Mon Jan 09 11:02:00 GMT 2006None

AbstractGhostDropManager

public abstract class AbstractGhostDropManager extends Object implements GhostDropListener

Fields Summary
protected JComponent
component
Constructors Summary
public AbstractGhostDropManager()

		this(null);
	
public AbstractGhostDropManager(JComponent component)

		this.component = component;
	
Methods Summary
protected java.awt.PointgetTranslatedPoint(java.awt.Point point)

        Point p = (Point) point.clone();
        SwingUtilities.convertPointFromScreen(p, component);
		return p;
	
public voidghostDropped(GhostDropEvent e)

	
protected booleanisInTarget(java.awt.Point point)

		Rectangle bounds = component.getBounds();
		return bounds.contains(point);