/* * @(#)Locator.java * * Project: JHotdraw - a GUI framework for technical drawings * http://www.jhotdraw.org * http://jhotdraw.sourceforge.net * Copyright: © by the original author(s) and all contributors * License: Lesser GNU Public License (LGPL) * http://www.opensource.org/licenses/lgpl-license.html */ package CH.ifa.draw.framework; import CH.ifa.draw.util.Storable; import java.awt.*; import java.io.Serializable; /** * Locators can be used to locate a position on a figure.

* *


* Design Patterns

*  o * Strategy
* Locator encapsulates the strategy to locate a handle on a figure. * * @version <$CURRENT_VERSION$> */ public interface Locator extends Storable, Serializable, Cloneable { /** * Locates a position on the passed figure. * @return a point on the figure. */ public Point locate(Figure owner); }