FileDocCategorySizeDatePackage
AtomUriElement.javaAPI DocApache Lucene 2.1.01555Wed Feb 14 10:45:58 GMT 2007org.apache.lucene.gdata.gom.core

AtomUriElement

public abstract class AtomUriElement extends SimpleGOMElementImpl
author
Simon Willnauer

Fields Summary
Constructors Summary
Methods Summary
public voidprocessEndElement()

see
org.apache.lucene.gdata.gom.core.SimpleGOMElementImpl#processEndElement()

		if (this.textValue == null)
			throw new GDataParseException(String.format(
					MISSING_ELEMENT_VALUE, this.localName, "atomUri"));
		try {
			AtomParserUtils.getAbsolutAtomURI(this.xmlBase, this.textValue);
		} catch (URISyntaxException e) {
			throw new GDataParseException(String.format(INVALID_ELEMENT_VALUE,
					this.localName, "absolute uri"), e);
		}