Methods Summary |
---|
public void | addAuthor(com.google.gdata.data.Person person)
this.feed.getAuthors().add(person);
|
public void | addExtension(com.google.gdata.data.Extension arg0)
this.feed.addExtension(arg0);
|
public void | addHtmlLink(java.lang.String arg0, java.lang.String arg1, java.lang.String arg2)
this.feed.addHtmlLink(arg0, arg1, arg2);
|
public void | addLink(com.google.gdata.data.Link link)
this.feed.getLinks().add(link);
|
public void | addLinks(java.util.Collection collection)
this.feed.getLinks().addAll(collection);
|
public void | addRepeatingExtension(com.google.gdata.data.Extension arg0)
this.feed.addRepeatingExtension(arg0);
|
public com.google.gdata.data.BaseEntry | createEntry()
return this.feed.createEntry();
|
public void | declareExtensions(com.google.gdata.data.ExtensionProfile extProfile)
this.feed.declareExtensions(extProfile);
|
public void | generateAtom(com.google.gdata.util.common.xml.XmlWriter arg0, com.google.gdata.data.ExtensionProfile arg1)
this.feed.generateAtom(arg0, arg1);
|
public void | generateAtomColl(com.google.gdata.util.common.xml.XmlWriter arg0)
this.feed.generateAtomColl(arg0);
|
public void | generateRss(com.google.gdata.util.common.xml.XmlWriter arg0, com.google.gdata.data.ExtensionProfile arg1)
this.feed.generateRss(arg0, arg1);
|
public GDataAccount | getAccount()
return this.account;
|
public java.util.List | getAuthors()
return this.feed.getAuthors();
|
public boolean | getCanPost()
return this.feed.getCanPost();
|
public java.util.Set | getCategories()
return this.feed.getCategories();
|
public java.util.List | getContributors()
return this.feed.getContributors();
|
public java.util.List | getEntries()
return this.feed.getEntries();
|
public com.google.gdata.data.Link | getEntryPostLink()
return this.feed.getEntryPostLink();
|
public T | getExtension(java.lang.Class arg0)
return this.feed.getExtension(arg0);
|
public com.google.gdata.data.BaseFeed | getFeed()
return this.feed;
|
public com.google.gdata.data.Generator | getGenerator()
return this.feed.getGenerator();
|
public com.google.gdata.data.Link | getHtmlLink()
return this.feed.getHtmlLink();
|
public java.lang.String | getIcon()
return this.feed.getIcon();
|
public java.lang.String | getId()
return this.feed.getId();
|
public int | getItemsPerPage()
return this.feed.getItemsPerPage();
|
public com.google.gdata.data.Link | getLink(java.lang.String arg0, java.lang.String arg1)
return this.feed.getLink(arg0, arg1);
|
public java.util.List | getLinks()
return this.feed.getLinks();
|
public java.lang.String | getLogo()
return this.feed.getLogo();
|
public java.util.List | getRepeatingExtension(java.lang.Class arg0)
return this.feed.getRepeatingExtension(arg0);
|
public com.google.gdata.data.TextConstruct | getRights()
return this.feed.getRights();
|
public com.google.gdata.data.BaseFeed | getSelf()
return this.feed.getSelf();
|
public com.google.gdata.data.Link | getSelfLink()
return this.feed.getSelfLink();
|
public com.google.gdata.client.Service | getService()
return this.feed.getService();
|
public org.apache.lucene.gdata.server.registry.ProvidedService | getServiceConfig()
return this.serviceConfig;
|
public java.lang.String | getServiceType()
return this.serviceType;
|
public int | getStartIndex()
return this.feed.getStartIndex();
|
public com.google.gdata.data.TextConstruct | getSubtitle()
return this.feed.getSubtitle();
|
public com.google.gdata.data.TextConstruct | getTitle()
return this.feed.getTitle();
|
public int | getTotalResults()
return this.feed.getTotalResults();
|
public com.google.gdata.data.DateTime | getUpdated()
return this.feed.getUpdated();
|
public com.google.gdata.util.XmlBlob | getXmlBlob()
return this.feed.getXmlBlob();
|
public com.google.gdata.data.BaseEntry | insert(com.google.gdata.data.BaseEntry arg0)
return this.feed.insert(arg0);
|
public void | parseAtom(com.google.gdata.data.ExtensionProfile arg0, java.io.InputStream arg1)
this.feed.parseAtom(arg0, arg1);
|
public void | parseAtom(com.google.gdata.data.ExtensionProfile arg0, java.io.Reader arg1)
this.feed.parseAtom(arg0, arg1);
|
public void | parseCumulativeXmlBlob(com.google.gdata.util.XmlBlob arg0, com.google.gdata.data.ExtensionProfile arg1, java.lang.Class arg2)
this.feed.parseCumulativeXmlBlob(arg0, arg1, arg2);
|
public void | removeExtension(java.lang.Class arg0)
this.feed.removeExtension(arg0);
|
public void | removeExtension(com.google.gdata.data.Extension arg0)
this.feed.removeExtension(arg0);
|
public void | removeRepeatingExtension(com.google.gdata.data.Extension arg0)
this.feed.removeRepeatingExtension(arg0);
|
public void | setAccount(GDataAccount account)
this.account = account;
|
public void | setCanPost(boolean arg0)
this.feed.setCanPost(arg0);
|
public void | setExtension(com.google.gdata.data.Extension arg0)
this.feed.setExtension(arg0);
|
public void | setFeed(com.google.gdata.data.BaseFeed feed)
this.feed = feed;
|
public void | setGenerator(com.google.gdata.data.Generator arg0)
this.feed.setGenerator(arg0);
|
public void | setIcon(java.lang.String arg0)
this.feed.setIcon(arg0);
|
public void | setId(java.lang.String arg0)
this.feed.setId(arg0);
|
public void | setItemsPerPage(int arg0)
this.feed.setItemsPerPage(arg0);
|
public void | setLogo(java.lang.String arg0)
this.feed.setLogo(arg0);
|
public void | setRights(com.google.gdata.data.TextConstruct arg0)
this.feed.setRights(arg0);
|
public void | setService(com.google.gdata.client.Service arg0)
this.feed.setService(arg0);
|
public void | setServiceConfig(org.apache.lucene.gdata.server.registry.ProvidedService serviceConfig)
this.serviceConfig = serviceConfig;
if (serviceConfig != null)
this.serviceType = this.serviceConfig.getName();
|
public void | setServiceType(java.lang.String serviceType)
this.serviceType = serviceType;
|
public void | setStartIndex(int arg0)
this.feed.setStartIndex(arg0);
|
public void | setSubtitle(com.google.gdata.data.TextConstruct arg0)
this.feed.setSubtitle(arg0);
|
public void | setTitle(com.google.gdata.data.TextConstruct arg0)
this.feed.setTitle(arg0);
|
public void | setTotalResults(int arg0)
this.feed.setTotalResults(arg0);
|
public void | setUpdated(com.google.gdata.data.DateTime arg0)
this.feed.setUpdated(arg0);
|
public void | setXmlBlob(com.google.gdata.util.XmlBlob arg0)
this.feed.setXmlBlob(arg0);
|