FileDocCategorySizeDatePackage
GOMSource.javaAPI DocApache Lucene 2.1.03193Wed Feb 14 10:46:00 GMT 2007org.apache.lucene.gdata.gom

GOMSource

public interface GOMSource implements GOMElement, GOMXmlEntity
If an atom:entry is copied from one feed into another feed, then the source atom:feed's metadata (all child elements of atom:feed other than the atom:entry elements) MAY be preserved within the copied entry by adding an atom:source child element, if it is not already present in the entry, and including some or all of the source feed's Metadata elements as the atom:source element's children. Such metadata SHOULD be preserved if the source atom:feed contains any of the child elements atom:author, atom:contributor, atom:rights, or atom:category and those child elements are not present in the source atom:entry.
atomSource =
element atom:source {
atomCommonAttributes,
(atomAuthor*
& atomCategory*
& atomContributor*
& atomGenerator?
& atomIcon?
& atomId?
& atomLink*
& atomLogo?
& atomRights?
& atomSubtitle?
& atomTitle?
& atomUpdated?
& extensionElement*)
}
author
Simon Willnauer

Fields Summary
public static final String
LOCALNAME
Constructors Summary
Methods Summary
public voidaddAuthor(GOMAuthor aAuthor)

param
aAuthor

public voidaddCategory(GOMCategory aCategory)

param
aCategory

public voidaddContributor(GOMContributor aContributor)

param
aContributor

public voidaddLink(GOMLink aLink)

param
aLink

public java.util.ListgetAuthors()

public java.util.ListgetCategories()

public java.util.ListgetContributor()

public GOMGeneratorgetGenerator()

public GOMIcongetIcon()

public GOMIdgetId()

public java.util.ListgetLinks()

public GOMLogogetLogo()

public GOMRightsgetRights()

public GOMSubtitlegetSubtitle()

public GOMTitlegetTitle()

public GOMUpdatedgetUpdated()

public voidsetGenerator(GOMGenerator aGenerator)

public voidsetIcon(GOMIcon aIcon)

public voidsetId(GOMId aId)

public voidsetLogo(GOMLogo aLogo)

public voidsetRights(GOMRights aRights)

public voidsetSubtitle(GOMSubtitle aSubtitle)

public voidsetTitle(GOMTitle aTitle)

public voidsetUpdated(GOMUpdated aUpdated)