Uses of Class
csheets.core.Address

Packages that use Address
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. 
 

Uses of Address in csheets.core
 

Methods in csheets.core that return Address
 Address CellImpl.getAddress()
           
 Address Cell.getAddress()
          Returns the address of the cell.
 

Methods in csheets.core with parameters of type Address
 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.
 

Constructors in csheets.core with parameters of type Address
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).
 

Uses of Address in csheets.ext
 

Methods in csheets.ext that return Address
 Address CellExtension.getAddress()
           
 

Methods in csheets.ext with parameters of type Address
 Cell SpreadsheetExtension.getCell(Address address)
           
 SortedSet<Cell> SpreadsheetExtension.getCells(Address address1, Address address2)