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

com.windowsazure.samples.internal.xml.XmlAttribute Maven / Gradle / Ivy

Go to download

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