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.
|
csheets.ext.assertion |
Provides support for user-specified and system-generated assertions.
|
csheets.ext.comments |
Provides an extension to support comments on cells.
|
csheets.ext.share.core |
The package of the main core of extension
|
csheets.ext.style |
Provides support for cell style, i.e. font, format, alignment, color and border.
|
csheets.ext.test |
Provides support for test cases and test case parameters.
|
Modifier and Type | Method and Description |
---|---|
CellListener[] |
SpreadsheetImpl.getCellListeners() |
CellListener[] |
Spreadsheet.getCellListeners()
Returns the cell listeners that have been registered on the spreadsheet.
|
CellListener[] |
CellImpl.getCellListeners() |
CellListener[] |
Cell.getCellListeners()
Returns the listeners that have been registered on the cell.
|
Modifier and Type | Method and Description |
---|---|
void |
SpreadsheetImpl.addCellListener(CellListener listener) |
void |
Spreadsheet.addCellListener(CellListener listener)
Registers the given listener to receive events from all cells in the
spreadsheet.
|
void |
CellImpl.addCellListener(CellListener listener) |
void |
Cell.addCellListener(CellListener listener)
Registers the given listener on the cell.
|
void |
SpreadsheetImpl.removeCellListener(CellListener listener) |
void |
Spreadsheet.removeCellListener(CellListener listener)
Deregisters the given listener from receiving events from all cells in
the spreadsheet.
|
void |
CellImpl.removeCellListener(CellListener listener) |
void |
Cell.removeCellListener(CellListener listener)
Removes the given listener from the cell.
|
Modifier and Type | Class and Description |
---|---|
class |
CellExtension
A base class for extensions of cells in a spreadsheet that uses delegation
to provide cell data.
|
Modifier and Type | Method and Description |
---|---|
CellListener[] |
SpreadsheetExtension.getCellListeners() |
CellListener[] |
CellExtension.getCellListeners() |
Modifier and Type | Method and Description |
---|---|
void |
SpreadsheetExtension.addCellListener(CellListener listener) |
void |
CellExtension.addCellListener(CellListener listener) |
void |
SpreadsheetExtension.removeCellListener(CellListener listener) |
void |
CellExtension.removeCellListener(CellListener listener) |
Modifier and Type | Class and Description |
---|---|
class |
AssertableCell
An extension of a cell in a spreadsheet, with support for assertions.
|
Modifier and Type | Class and Description |
---|---|
class |
CommentableCell
An extension of a cell in a spreadsheet, with support for comments.
|
Modifier and Type | Class and Description |
---|---|
class |
CellNetworkListenerClient
Class that will detect changes on client's cells This class implements
CellListener's interface Change the flag when any cell from client is changed
Just the method contentChanged(Cell cell) is implement, the other are not
used
|
class |
CellNetworkListenerServer
Class that will detect changes on server's cells This class implements
CellListener's interface Change the flag when any cell from client is changed
Just the method contentChanged(Cell cell) is implement, the others are not
used
|
Modifier and Type | Class and Description |
---|---|
class |
StylableCell
An extension of a cell in a spreadsheet, with support for style, i.e. font,
format, alignment, color and border.
|
Modifier and Type | Class and Description |
---|---|
class |
TestableCell
An extension of a cell in a spreadsheet, with support for test cases.
|