nullhandle.java

来自「JHotDraw学习过程中对数组的测试程序haha 学习过程中对数组的测试程序」· Java 代码 · 共 44 行

JAVA
44
字号
/* * @(#)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. * <hr> * <b>Design Patterns</b><P> * <img src="images/red-ball-small.gif" width=6 height=6 alt=" o "> * <b>NullObject</b><br> * 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);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?