Package com.azalient.api.file

This package provides interfaces to data-file objects: RecordW, TableW, PageW, etc

See:
          Description

Interface Summary
BookR An opaque interface to a "workbook" opened for reading.
BookW A handle to a "workbook" that can be written to file.
Page The base interface for pages written to the "workbook" or model file.
PageW An interface to a writable page, allowing you to set fields on the page
RecordR On reading a table of data, the table reader calls TableR.row() and gets a handle to a RecordR.
RecordRW Any object implementing this interface can be read from and written to a table in the model file.
RecordW If an object implements this interface it can be written to the model data file, as a record in a table.
ResultsTable A results table is a writable table created for the purpose of saving results.
SortableData The base interface for all records, this simple interface retrieves a single sort key, which can be used to sort objects in a table
StoreRecordRW An extension of the read-write record type, a store record has a reference to a store, and the optional ability to be renamed.
Table This interface is passed to a parser to allow data to be read or written There can be several tables per page The file reader and writer know nothing about the type of the table or the objects within it - they know only the primitive type of the data in the page.
TableB An interface describing the bounds of a table on a page, using the absolute row and column indices.
TableR An interface to a table that can be read from the file (but not necessarily written back to the file).
TableRW An interface to a table that is read/write.
TableW An interface to a table that can be written to a page in the model file.
 

Package com.azalient.api.file Description

This package provides interfaces to data-file objects: RecordW, TableW, PageW, etc