📄 pertfigurecreationtool.java
字号:
/*
* @(#)PertFigureCreationTool.java 5.2
*
*/
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -