19package org.openoffice.xmerge.converter.xml.sxc;
21import java.io.IOException;
22import java.util.Iterator;
ConvertData is used as a container for passing Document objects in and out of the Convert class.
This is a class representing the different attributes for a worksheet contained in settings....
This class is a abstract class for encoding a "Device" Document format into an alternative spreadshee...
abstract String getCellContents()
Return the contents of the active cell.
abstract Iterator< ColumnRowInfo > getColumnRowInfos()
Returns an Enumeration to a Vector of ColumnRowInfo.
abstract int getNumberOfColumns()
Returns the number of populated columns in the current WorkSheet.
abstract String getSheetName()
Returns the name of the current WorkSheet.
abstract BookSettings getSettings()
Returns the BookSettings.
abstract int getRowNumber()
Returns the number of the active row.
abstract Format getCellFormat()
Return a Format object describing the active cells formatting.
abstract void addDeviceContent(ConvertData cd)
Add the contents of a ConvertData to the workbook.
abstract String getCellDataType()
Return the data type of the active cell.
abstract String getCellValue()
Return the value of the active cell.
abstract boolean goToNextCell()
Move on the next populated cell in the current WorkSheet.
abstract int getColNumber()
Returns the number of the active column.
abstract void setWorksheet(int sheetIndex)
Sets the active WorkSheet.
abstract int getNumberOfSheets()
Returns the total number of sheets in the WorkBook.
abstract int getNumberOfRows()
Returns the number of populated rows in the current WorkSheet.
abstract Iterator< NameDefinition > getNameDefinitions()
Returns an Enumeration to a Vector of NameDefinition.
This is an interface used by the DiffAlgorithm and MergeAlgorithm to access a Document.
Provides interfaces for converting between two Document formats, and supports a "merge" interface for...