FileDocCategorySizeDatePackage
Feed.javaAPI DocAndroid 1.5 API2501Wed May 06 22:41:16 BST 2009com.google.wireless.gdata.data

Feed

public class Feed extends Object
Class containing information about a GData feed. Note that this feed does not contain any of the entries in that feed -- the entries are yielded separately from this Feed.

Fields Summary
private int
totalResults
private int
startIndex
private int
itemsPerPage
private String
title
private String
id
private String
lastUpdated
private String
category
private String
categoryScheme
Constructors Summary
public Feed()
Creates a new, empty feed.

    
Methods Summary
public java.lang.StringgetCategory()

return
the category

        return category;
    
public java.lang.StringgetCategoryScheme()

return
the categoryScheme

        return categoryScheme;
    
public java.lang.StringgetId()

return
the id

        return id;
    
public intgetItemsPerPage()

        return itemsPerPage;
    
public java.lang.StringgetLastUpdated()

return
the lastUpdated

        return lastUpdated;
    
public intgetStartIndex()

        return startIndex;
    
public java.lang.StringgetTitle()

return
the title

        return title;
    
public intgetTotalResults()

        return totalResults;
    
public voidsetCategory(java.lang.String category)

param
category the category to set

        this.category = category;
    
public voidsetCategoryScheme(java.lang.String categoryScheme)

param
categoryScheme the categoryScheme to set

        this.categoryScheme = categoryScheme;
    
public voidsetId(java.lang.String id)

param
id the id to set

        this.id = id;
    
public voidsetItemsPerPage(int itemsPerPage)

        this.itemsPerPage = itemsPerPage;
    
public voidsetLastUpdated(java.lang.String lastUpdated)

param
lastUpdated the lastUpdated to set

        this.lastUpdated = lastUpdated;
    
public voidsetStartIndex(int startIndex)

        this.startIndex = startIndex;
    
public voidsetTitle(java.lang.String title)

param
title the title to set

        this.title = title;
    
public voidsetTotalResults(int totalResults)

        this.totalResults = totalResults;