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

com.windowsazure.samples.internal.xml.XmlElement 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;

import com.windowsazure.samples.internal.util.Util;


public abstract class XmlElement {

	public String getFullName() {
		return Util.isStringNullOrEmpty(tag) ? name : tag + ":" + name;
	}
	
	public String getLocalName() {
		return name;
	}
	
	protected XmlElement(String tag, String name) {
		this.tag = tag;
		this.name = name;
	}
	
	protected String getTag() {
		return tag;
	}
	
	private String name;
	private String tag;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy