📄 jftemplate.java
字号:
/**
* $Id:JFTemplate.java $
*
* Copyright 2004 ~ 2005 JingFei International Cooperation LTD. All rights reserved. *
*/
package com.jfimagine.jfgraph.shape.union;
import com.jfimagine.jfgraph.shape.base.AbstractObject;
/**
* JFTemplate class is used to store and recover customized graph templates.
*
* @author CookieMaker
*
* @version $Revision: 1.1.0 $
*/
public class JFTemplate extends AbstractLibrary{
/**
* Constructor
*/
public JFTemplate(){
m_elemWidth =80;
}
/**
* Creates a new AbstractObject of the same class and with the same contents as this object.
* This method implements the method defined in AbstractObject.
*
* @return A clone of this class.
*
*/
protected AbstractObject cloneMe() throws CloneNotSupportedException{
return new JFTemplate();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -