/* * @(#)NullHandle.java 5.1 * */ package CH.ifa.draw.standard; import java.awt.*; import CH.ifa.draw.framework.*; /** * A handle that doesn't change the owned figure. Its only purpose is * to show feedback that a figure is selected. *
* Design Patterns

*  o * NullObject
* NullObject enables to treat handles that don't do * anything in the same way as other handles. * */ public class NullHandle extends LocatorHandle { /** * The handle's locator. */ protected Locator fLocator; public NullHandle(Figure owner, Locator locator) { super(owner, locator); } /** * Draws the NullHandle. NullHandles are drawn as a * red framed rectangle. */ public void draw(Graphics g) { Rectangle r = displayBox(); g.setColor(Color.black); g.drawRect(r.x, r.y, r.width, r.height); } }