FileDocCategorySizeDatePackage
WorksheetEntry.javaAPI DocAndroid 1.5 API2513Wed May 06 22:41:16 BST 2009com.google.wireless.gdata.spreadsheets.data

WorksheetEntry

public class WorksheetEntry extends com.google.wireless.gdata.data.Entry
Represents an entry in a GData Worksheets meta-feed.

Fields Summary
private String
cellsUri
The URI to this entry's cells feed.
private int
colCount
The number of columns in the worksheet.
private String
listUri
The URI to this entry's list feed.
private int
rowCount
The number of rows in the worksheet.
Constructors Summary
Methods Summary
public java.lang.StringgetCellFeedUri()
Fetches the URI of this entry's Cells feed.

return
The URI of the entry's Cells feed.


                          
       
        return cellsUri;
    
public intgetColCount()
Fetches the number of columns in the worksheet.

return
The number of columns.

        return colCount;
    
public java.lang.StringgetListFeedUri()
Fetches the URI of this entry's List feed.

return
The URI of the entry's List feed.
throws
GDataException If the URI is not set or is invalid.

        return listUri;
    
public intgetRowCount()
Fetches the number of rows in the worksheet.

return
The number of rows.

        return rowCount;
    
public voidsetCellFeedUri(java.lang.String href)
Sets the URI of this entry's Cells feed.

param
href The HREF attribute that should be the Cells feed URI.

        cellsUri = href;
    
public voidsetColCount(int colCount)
Sets the number of columns in the worksheet.

param
colCount The new number of columns.

        this.colCount = colCount;
    
public voidsetId(java.lang.String id)
Sets this entry's Atom ID.

param
id The new ID value.

        super.setId(id);
    
public voidsetListFeedUri(java.lang.String href)
Sets the URI of this entry's List feed.

param
href The HREF attribute that should be the List feed URI.

        listUri = href;
    
public voidsetRowCount(int rowCount)
Sets the number of rows in the worksheet.

param
rowCount The new number of rows.

        this.rowCount = rowCount;