Interface SpreadsheetClientRpc
-
public interface SpreadsheetClientRpc
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
cellsUpdated(ArrayList<CellData> updatedCellData)
void
editCellComment(int col, int row)
void
invalidCellAddress()
void
refreshCellStyles()
void
setSelectedCellAndRange(String name, int col, int row, int c1, int c2, int r1, int r2, boolean scroll)
Updates the selected cell and painted range.void
showActions(ArrayList<SpreadsheetActionDetails> actionDetails)
The String arrays contain the caption and the icon resource key.void
showSelectedCell(String name, int col, int row, String cellValue, boolean function, boolean locked, boolean initialSelection)
void
updateBottomLeftCellValues(ArrayList<CellData> cellData)
void
updateBottomRightCellValues(ArrayList<CellData> cellData)
void
updateFormulaBar(String possibleName, int col, int row)
void
updateTopLeftCellValues(ArrayList<CellData> cellData)
void
updateTopRightCellValues(ArrayList<CellData> cellData)
-
-
-
Method Detail
-
updateFormulaBar
void updateFormulaBar(String possibleName, int col, int row)
- Parameters:
col
- Selected cell's column. 1-basedrow
- Selected cell's row. 1-based
-
invalidCellAddress
void invalidCellAddress()
-
showSelectedCell
void showSelectedCell(String name, int col, int row, String cellValue, boolean function, boolean locked, boolean initialSelection)
-
showActions
void showActions(ArrayList<SpreadsheetActionDetails> actionDetails)
The String arrays contain the caption and the icon resource key.- Parameters:
actionDetails
-
-
setSelectedCellAndRange
void setSelectedCellAndRange(String name, int col, int row, int c1, int c2, int r1, int r2, boolean scroll)
Updates the selected cell and painted range. Displays the selected cell value. Indexes 1-based.
-
refreshCellStyles
void refreshCellStyles()
-
editCellComment
void editCellComment(int col, int row)
-
-