blob: b07eaf58c204fc031847eca145a208efd133d248 [file] [log] [blame]
package org.eclipse.jst.pagedesigner.viewer;
import java.util.List;
import org.eclipse.draw2d.geometry.Point;
import org.eclipse.gef.EditPart;
import org.eclipse.gef.requests.ChangeBoundsRequest;
import org.eclipse.jst.pagedesigner.validation.caret.IPositionMediator;
/**
* A strategy used to determine the closest validt drop location given
* a current position.
*
* Note: clients should not implement or sub-class this interface. Instead,
* sub-class AbstractDropLocationStrategy.
* @author cbateman
*
*/
public interface IDropLocationStrategy
{
/**
* @param host
* @param p
* @param validator
* @return the closest valid design positionn to p, starting from host
* that is valid based on validator, or null if there is no such position
* (drop not valid). validator.isValidPosition must be honoured.
*/
DesignPosition calculateDesignPosition(EditPart host, Point p, IPositionMediator validator);
/**
* May choose to contribute target feedback given a target part host and given
* the proposed drops location given by position
*
* @param position
* @return must contain all IFigure objects that were added to the feedback layer by
* this call. Once returned, these IFigure's must not be kept as state information
* by the strategy because they may be manipulated at any after return by the caller.
* This includes erasing them from the feedback layer. List must be modifiable by
* the caller.
*
* Note: most feedback in Draw2D requires that it is added to the feedback layer
* before it can be fully initialized, which is why this call adds feedback and then
* returns it. The caller is responsible for erasing the figures in the list.
*/
List showTargetFeedback(EditPart host, DesignPosition position, ChangeBoundsRequest request);
}