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

SpreadsheetEntry

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

Fields Summary
private String
worksheetsUri
The URI of the worksheets meta-feed for this spreadsheet
Constructors Summary
Methods Summary
public java.lang.StringgetWorksheetFeedUri()
Fetches the URI of the worksheets meta-feed (that is, list of worksheets) for this spreadsheet.

return
the worksheets meta-feed URI
throws
GDataException if the unique key is not set


                                       
         
        if (StringUtils.isEmpty(worksheetsUri)) {
            throw new GDataException("worksheet URI is not set");
        }
        return worksheetsUri;
    
public voidsetWorksheetFeedUri(java.lang.String href)
Sets the URI of the worksheet meta-feed corresponding to this spreadsheet.

param
href

        worksheetsUri = href;