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

br.com.anteros.xml.helper.XMLElementList Maven / Gradle / Ivy

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