All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.weicoder.xml.Attribute Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
package com.weicoder.xml;

/**
 * XML节点属性接口 

注: 本包功能需要jdom或dom4j依赖包

* @author WD * @version 1.0 */ public interface Attribute { /** * 获得属性名 * @return name */ String getName(); /** * 设置属性名 * @param name 名 */ void setName(String name); /** * 获得属性值 * @return value */ String getValue(); /** * 设置属性值 * @param value 值 */ void setValuel(String value); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy