Methods Summary |
---|
public java.lang.String | getLocalName()
return this.localName;
|
public void | processElementValue(java.lang.String aValue)
this.textValue = aValue;
|
public void | processEndElement()
if (this.textValue == null)
throw new GDataParseException(
"Element id must have a unique id value -- is null");
|
public void | writeAtomOutput(org.apache.lucene.gdata.gom.writer.GOMOutputWriter aStreamWriter)
if (aStreamWriter == null)
throw new GDataParseException("GOMWriter must not be null");
aStreamWriter.writeSimpleXMLElement(LOCALNAME,
getXmlNamespaceAttributes(), this.textValue);
|
public void | writeRssOutput(org.apache.lucene.gdata.gom.writer.GOMOutputWriter aStreamWriter)
if (aStreamWriter == null)
throw new GDataParseException("GOMWriter must not be null");
aStreamWriter.writeSimpleXMLElement(ATOM_QNAME,
getXmlNamespaceAttributes(), this.textValue);
|
public void | writeRssOutput(org.apache.lucene.gdata.gom.writer.GOMOutputWriter aStreamWriter, java.lang.String aRssName)
if (aStreamWriter == null)
throw new GDataParseException("GOMWriter must not be null");
aStreamWriter.writeSimpleXMLElement(aRssName,
getXmlNamespaceAttributes(), this.textValue);
|