Methods Summary |
---|
public java.lang.String | getCellFeedUri()Fetches the URI of this entry's Cells feed.
return cellsUri;
|
public int | getColCount()Fetches the number of columns in the worksheet.
return colCount;
|
public java.lang.String | getListFeedUri()Fetches the URI of this entry's List feed.
return listUri;
|
public int | getRowCount()Fetches the number of rows in the worksheet.
return rowCount;
|
public void | setCellFeedUri(java.lang.String href)Sets the URI of this entry's Cells feed.
cellsUri = href;
|
public void | setColCount(int colCount)Sets the number of columns in the worksheet.
this.colCount = colCount;
|
public void | setId(java.lang.String id)Sets this entry's Atom ID.
super.setId(id);
|
public void | setListFeedUri(java.lang.String href)Sets the URI of this entry's List feed.
listUri = href;
|
public void | setRowCount(int rowCount)Sets the number of rows in the worksheet.
this.rowCount = rowCount;
|