⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configdocument.java

📁 羽量级数据持久层开发框架
💻 JAVA
字号:
/**
 *
 */



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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -