configdocument.java
来自「羽量级数据持久层开发框架」· Java 代码 · 共 93 行
JAVA
93 行
/**
*
*/
package org.speedframework.utilities;
//~--- non-JDK imports --------------------------------------------------------
import org.xml.sax.Attributes;
//~--- JDK imports ------------------------------------------------------------
import java.util.Hashtable;
/**
* @author Ma Huihuang
* <p/>
* 2007-6-10
*/
public class ConfigDocument
{
/** 属性描述信息 */
private Attributes attributes;
/** 属性描述信息 */
private Hashtable childElement;
/** 属性描述信息 */
private String elementName;
/** 属性描述信息 */
private String elementValue;
/**
* @return the attributes
*/
public Attributes getAttributes() {
return attributes;
}
/**
* @param attributes the attributes to set
*/
public void setAttributes(Attributes attributes) {
this.attributes = attributes;
}
/**
* @return the childElement
*/
public Hashtable getChildElement() {
return childElement;
}
/**
* @param childElement the childElement to set
*/
public void setChildElement(Hashtable childElement) {
this.childElement = childElement;
}
/**
* @return the elementName
*/
public String getElementName() {
return elementName;
}
/**
* @param elementName the elementName to set
*/
public void setElementName(String elementName) {
this.elementName = elementName;
}
/**
* @return the elementValue
*/
public String getElementValue() {
return elementValue;
}
/**
* @param elementValue the elementValue to set
*/
public void setElementValue(String elementValue) {
this.elementValue = elementValue;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?