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

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

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