Class GSRow
- java.lang.Object
-
- org.eclipse.epsilon.emc.spreadsheets.SpreadsheetRow
-
- org.eclipse.epsilon.emc.spreadsheets.google.GSRow
-
public class GSRow extends SpreadsheetRow
-
-
Field Summary
-
Fields inherited from class org.eclipse.epsilon.emc.spreadsheets.SpreadsheetRow
worksheet
-
-
Constructor Summary
Constructors Constructor Description GSRow(GSWorksheet worksheet, com.google.gdata.data.spreadsheet.ListEntry listEntry)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getVisibleCellValue(SpreadsheetColumn column)
The purpose of this method is to return the visible value stored by the given cell.void
overwriteCellValue(SpreadsheetColumn column, String value)
The purpose of this method is to overwrite the value of the cell.-
Methods inherited from class org.eclipse.epsilon.emc.spreadsheets.SpreadsheetRow
getAllVisibleCellValues, getAllVisibleCellValues, getAllVisibleCellValuesAsIs, getColumn, getModel, getReferencesBySource, getReferencesByTarget, getWorksheet, toString, validateColumn, writeManyVisibleValues, writeOneVisibleValue, writeVisibleCellValues
-
-
-
-
Constructor Detail
-
GSRow
public GSRow(GSWorksheet worksheet, com.google.gdata.data.spreadsheet.ListEntry listEntry)
-
-
Method Detail
-
getVisibleCellValue
public String getVisibleCellValue(SpreadsheetColumn column)
Description copied from class:SpreadsheetRow
The purpose of this method is to return the visible value stored by the given cell. The 'visible value' means the value stored by the cell and observed when the row is viewed in the spreadsheet. This means any worksheet metadata shall be disregarded by this method.- Specified by:
getVisibleCellValue
in classSpreadsheetRow
- Returns:
- the visible value of the cell
-
overwriteCellValue
public void overwriteCellValue(SpreadsheetColumn column, String value)
Description copied from class:SpreadsheetRow
The purpose of this method is to overwrite the value of the cell.- Specified by:
overwriteCellValue
in classSpreadsheetRow
value
- the new value of the cell
-
-