yarfraw.generated.atom03.elements
Class FeedType

java.lang.Object
  extended by yarfraw.generated.atom03.elements.FeedType

public class FeedType
extends Object

Java class for feedType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="feedType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <choice>
         <element name="link" type="{http://purl.org/atom/ns#}linkType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="modified" type="{http://purl.org/atom/ns#}iso8601dateTime"/>
         <element name="author" type="{http://purl.org/atom/ns#}personType" minOccurs="0"/>
         <element name="contributor" type="{http://purl.org/atom/ns#}personType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="id" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
         <element name="generator" type="{http://purl.org/atom/ns#}generatorType" minOccurs="0"/>
         <element name="copyright" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="entry" type="{http://purl.org/atom/ns#}entryType" maxOccurs="unbounded" minOccurs="0"/>
         <any/>
       </choice>
       <attribute name="version" use="required" type="{http://purl.org/atom/ns#}versionType" />
       <attribute ref="{http://www.w3.org/XML/1998/namespace}lang"/>
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  List<Object> any
           
protected  PersonType author
           
protected  List<PersonType> contributor
           
protected  String copyright
           
protected  List<EntryType> entry
           
protected  GeneratorType generator
           
protected  String id
           
protected  String lang
           
protected  List<LinkType> link
           
protected  String modified
           
protected  String version
           
 
Constructor Summary
FeedType()
           
 
Method Summary
 List<Object> getAny()
          Gets the value of the any property.
 PersonType getAuthor()
          Gets the value of the author property.
 List<PersonType> getContributor()
          Gets the value of the contributor property.
 String getCopyright()
          Gets the value of the copyright property.
 List<EntryType> getEntry()
          Gets the value of the entry property.
 GeneratorType getGenerator()
          Gets the value of the generator property.
 String getId()
          Gets the value of the id property.
 String getLang()
          Gets the value of the lang property.
 List<LinkType> getLink()
          Gets the value of the link property.
 String getModified()
          Gets the value of the modified property.
 Map<QName,String> getOtherAttributes()
          Gets a map that contains attributes that aren't bound to any typed property on this class.
 String getVersion()
          Gets the value of the version property.
 void setAuthor(PersonType value)
          Sets the value of the author property.
 void setCopyright(String value)
          Sets the value of the copyright property.
 void setGenerator(GeneratorType value)
          Sets the value of the generator property.
 void setId(String value)
          Sets the value of the id property.
 void setLang(String value)
          Sets the value of the lang property.
 void setModified(String value)
          Sets the value of the modified property.
 void setVersion(String value)
          Sets the value of the version property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

link

protected List<LinkType> link

modified

protected String modified

author

protected PersonType author

contributor

protected List<PersonType> contributor

id

protected String id

generator

protected GeneratorType generator

copyright

protected String copyright

entry

protected List<EntryType> entry

any

protected List<Object> any

version

protected String version

lang

protected String lang
Constructor Detail

FeedType

public FeedType()
Method Detail

getLink

public List<LinkType> getLink()
Gets the value of the link property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the link property.

For example, to add a new item, do as follows:

    getLink().add(newItem);
 

Objects of the following type(s) are allowed in the list LinkType


getModified

public String getModified()
Gets the value of the modified property.

Returns:
possible object is String

setModified

public void setModified(String value)
Sets the value of the modified property.

Parameters:
value - allowed object is String

getAuthor

public PersonType getAuthor()
Gets the value of the author property.

Returns:
possible object is PersonType

setAuthor

public void setAuthor(PersonType value)
Sets the value of the author property.

Parameters:
value - allowed object is PersonType

getContributor

public List<PersonType> getContributor()
Gets the value of the contributor property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the contributor property.

For example, to add a new item, do as follows:

    getContributor().add(newItem);
 

Objects of the following type(s) are allowed in the list PersonType


getId

public String getId()
Gets the value of the id property.

Returns:
possible object is String

setId

public void setId(String value)
Sets the value of the id property.

Parameters:
value - allowed object is String

getGenerator

public GeneratorType getGenerator()
Gets the value of the generator property.

Returns:
possible object is GeneratorType

setGenerator

public void setGenerator(GeneratorType value)
Sets the value of the generator property.

Parameters:
value - allowed object is GeneratorType

getCopyright

public String getCopyright()
Gets the value of the copyright property.

Returns:
possible object is String

setCopyright

public void setCopyright(String value)
Sets the value of the copyright property.

Parameters:
value - allowed object is String

getEntry

public List<EntryType> getEntry()
Gets the value of the entry property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the entry property.

For example, to add a new item, do as follows:

    getEntry().add(newItem);
 

Objects of the following type(s) are allowed in the list EntryType


getAny

public List<Object> getAny()
Gets the value of the any property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the any property.

For example, to add a new item, do as follows:

    getAny().add(newItem);
 

Objects of the following type(s) are allowed in the list Object Element


getVersion

public String getVersion()
Gets the value of the version property.

Returns:
possible object is String

setVersion

public void setVersion(String value)
Sets the value of the version property.

Parameters:
value - allowed object is String

getLang

public String getLang()
Gets the value of the lang property.

Returns:
possible object is String

setLang

public void setLang(String value)
Sets the value of the lang property.

Parameters:
value - allowed object is String

getOtherAttributes

public Map<QName,String> getOtherAttributes()
Gets a map that contains attributes that aren't bound to any typed property on this class.

the map is keyed by the name of the attribute and the value is the string value of the attribute. the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter.

Returns:
always non-null


Copyright © 2008. All Rights Reserved.