jftemplate.java
来自「用Java开发的、实现类似Visio功能的应用程序源码」· Java 代码 · 共 42 行
JAVA
42 行
/**
* $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 + =
减小字号Ctrl + -
显示快捷键?