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

com.jpattern.core.xml.IXmlElement Maven / Gradle / Ivy

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

import java.io.Serializable;
import java.util.List;

/**
 * 
 * @author Francesco Cina'
 *
 * 16/giu/2010
 */
public interface IXmlElement extends Serializable {

	String getName();

	void setName(String name);

	String getValue();

	void setValue(String value);

	List getSubElementsName();

	IXmlElement getSubElement(String name);
	
	List getSubElements(String name);

	IXmlElement addSubElement();

	List getAttributesName();

	IXmlAttribute getAttribute(String name);

	IXmlAttribute addAttribute();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy