📄 propertylist.java
字号:
/**
* $Id:PropertyList.java $
*
* Copyright 2004 ~ 2005 JingFei International Cooperation LTD. All rights reserved. *
*/
package com.jfimagine.jfgraph.shape.base;
import java.awt.Graphics;
import java.awt.Color;
import java.util.List;
import java.util.ArrayList;
import java.util.Iterator;
import com.jfimagine.jfgraph.shape.base.AbstractObject;
import com.jfimagine.jfgraph.shape.base.ObjectList;
import com.jfimagine.jfgraph.shape.base.Property;
import com.jfimagine.jfgraph.geom.GeomConst;
import com.jfimagine.jfgraph.geom.JFPoint;
import com.jfimagine.jfgraph.geom.Rect;
/**
* PropertyList class. A property list is used to manipulate property issues.
*
* @author CookieMaker
*
* @version $Revision: 1.00 $
*/
public class PropertyList extends ObjectList{
/**
* A XML string tag represents a property List
*/
public static final String XML_PROPERTYLIST ="PropertyList";
/**
* Constructor for PropertyList
*/
public PropertyList(){
setObjectType(ShapeConst.OBJECTTYPE_PROPERTYLIST);
setXMLTag(XML_PROPERTYLIST);
}
/**
* 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 PropertyList();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -