
br.com.anteros.xml.helper.XMLElementList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-XML-Helper Show documentation
Show all versions of Anteros-XML-Helper Show documentation
Anteros XML Helper for Java.
The newest version!
package br.com.anteros.xml.helper;
import java.util.ArrayList;
public class XMLElementList extends ArrayList {
private static final long serialVersionUID = 1L;
public XMLElementList addXMLElement(String name, String value) {
this.add(new XMLElement(name, value));
return this;
}
public XMLElementList addXMLElement(String name, String value, boolean addNullValue) {
this.add(new XMLElement(name, value, addNullValue));
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy