Package | Description |
---|---|
csheets.core |
Provides the core classes for the application's data model, i.e. workbooks,
spreadsheets, cells, addresses and values.
|
csheets.ext |
Provides an extension mechanism for the application.
|
Modifier and Type | Method and Description |
---|---|
Address |
CellImpl.getAddress() |
Address |
Cell.getAddress()
Returns the address of the cell.
|
Modifier and Type | Method and Description |
---|---|
int |
Address.compareTo(Address address)
Compares this address with the given address for order.
|
Cell |
SpreadsheetImpl.getCell(Address address) |
Cell |
Spreadsheet.getCell(Address address)
Returns the cell at the given address.
|
SortedSet<Cell> |
SpreadsheetImpl.getCells(Address address1,
Address address2) |
SortedSet<Cell> |
Spreadsheet.getCells(Address address1,
Address address2)
Returns the cells in the range between the given addresses.
|
Constructor and Description |
---|
CellImpl(Spreadsheet spreadsheet,
Address address)
Creates a new cell at the given address in the given spreadsheet.
|
CellImpl(Spreadsheet spreadsheet,
Address address,
String content)
Creates a new cell at the given address in the given spreadsheet,
initialized with the given content (not intended to be used directly).
|
Modifier and Type | Method and Description |
---|---|
Address |
CellExtension.getAddress() |
Modifier and Type | Method and Description |
---|---|
Cell |
SpreadsheetExtension.getCell(Address address) |
SortedSet<Cell> |
SpreadsheetExtension.getCells(Address address1,
Address address2) |