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

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

The newest version!
package br.com.anteros.xml.helper;

import java.util.ArrayList;

public class XMLAttributeList extends ArrayList {

	private static final long serialVersionUID = 1L;

	public XMLAttributeList addAttribute(String name, String value) {
		this.add(new XMLAttribute(name, value));
		return this;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy