See: Description
Interface | Description |
---|---|
Cell |
A cell in a spreadsheet.
|
CellListener |
A listener interface for receiving notification on events occurring in a
cell.
|
Spreadsheet |
A spreadsheet which provides cell data and dependencies.
|
WorkbookListener |
A listener interface for receiving notification on events occurring in a
workbook.
|
Class | Description |
---|---|
Address |
An address in a spreadsheet that denotes to the location of a cell.
|
CellImpl |
The implementation of the
Cell interface. |
SpreadsheetImpl |
The implementation of the
Spreadsheet interface. |
SpreadsheetTest | |
UpdateCellContent |
A singleton to update a cell's content
|
Value |
A typed value that a cell can contain.
|
Workbook |
A workbook which can contain several spreadsheets.
|
WorkbookTest |
Enum | Description |
---|---|
Value.Type |
The recognized types of values
|
Exception | Description |
---|---|
IllegalValueTypeException |
An exception that is thrown when an illegal value is encountered.
|
Provides the core classes for the application's data model, i.e. workbooks, spreadsheets, cells, addresses and values.
A Workbook
consists of a number of Spreadsheet
s,
each of which consist of a grid of Cell
s at different unique
Address
es. Each Cell
s has content, which can be
interpreted as a Formula
. Cell
s also have
Value
s, which can be of any of a number of pre-defined types.
Listener interfaces are provided for receiving notification of important events
in the data model.
In order to enable extensibility, interfaces are specified separately for
Cell
and Spreadsheet
.