
br.com.anteros.xml.helper.XMLAttributeList 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 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