com.windowsazure.samples.internal.xml.XmlAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpa4azure Show documentation
Show all versions of jpa4azure Show documentation
jpa4azure, implements a subset of the JPA specification using Azure Storage for pesisting beans. see http://jpa4azure.codeplex.com for more information.
The newest version!
package com.windowsazure.samples.internal.xml;
public final class XmlAttribute extends XmlElement {
public XmlAttribute(String tag, String name, String value) {
super(tag, name);
this.value = value;
}
public String getRepresentation() {
return getFullName() + "='" + value + "'";
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
private String value;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy