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

GOMUpdatedImpl

public class GOMUpdatedImpl extends GOMDateConstructImpl implements org.apache.lucene.gdata.gom.GOMUpdated
author
Simon Willnauer

Fields Summary
protected static final QName
ATOM_QNAME
Constructors Summary
public GOMUpdatedImpl()


	 	 
	  
		super();
		this.localName = LOCALNAME;
		this.qname = new QName(GOMNamespace.ATOM_NS_URI, this.localName);
	
Methods Summary
public voidwriteRssOutput(org.apache.lucene.gdata.gom.writer.GOMOutputWriter aStreamWriter)

see
org.apache.lucene.gdata.gom.GOMElement#writeRssOutput(org.apache.lucene.gdata.gom.writer.GOMStaxWriter)

		if (this.rfc3339String == null)
			this.rfc3339String = GOMUtils
					.buildRfc3339DateFormat(this.date == 0 ? System
							.currentTimeMillis() : this.date);
		aStreamWriter.writeSimpleXMLElement(ATOM_QNAME,
				getXmlNamespaceAttributes(), this.rfc3339String);