pertfigurecreationtool.java

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

JAVA
31
字号
/* * @(#)PertFigureCreationTool.java 5.1 * */package CH.ifa.draw.samples.pert;import java.awt.*;import CH.ifa.draw.framework.*;import CH.ifa.draw.standard.*;/** * A more efficient version of the generic Pert creation * tool that is not based on cloning. */public  class PertFigureCreationTool extends CreationTool {    public PertFigureCreationTool(DrawingView view) {        super(view);    }    /**     * Creates a new PertFigure.     */    protected Figure createFigure() {        return new PertFigure();    }}

⌨️ 快捷键说明

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