
br.com.anteros.xml.helper.XMLAttribute 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;
public class XMLAttribute {
private String name;
private String value;
public XMLAttribute(String name, String value) {
this.name = name;
this.value = value;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public static XMLAttributeList list() {
return new XMLAttributeList();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy