Uses of Interface
org.odftoolkit.simple.table.TableContainer

Packages that use TableContainer
org.odftoolkit.simple Provide high level methods to frequently used ODF documents. 
org.odftoolkit.simple.presentation Provide high level methods to ODF presentation documents. 
org.odftoolkit.simple.table Provide convenient methods to manipulate table in ODF text and spreadsheet document. 
org.odftoolkit.simple.text Provide convenient methods to manipulate frequently used structures in ODF text document, such as list and section. 
 

Uses of TableContainer in org.odftoolkit.simple
 

Classes in org.odftoolkit.simple that implement TableContainer
 class ChartDocument
          This class represents an empty ODF document , which will be in general embedded in an existing ODF (Spreadsheet) document.
 class Document
          This abstract class is representing one of the possible ODF documents
 class GraphicsDocument
          This class represents an empty ODF graphics document.
 class PresentationDocument
          This class represents an empty ODF presentation.
 class SpreadsheetDocument
          This class represents an empty ODF spreadsheet document.
 class TextDocument
          This class represents an empty ODF text document.
 

Methods in org.odftoolkit.simple that return TableContainer
protected  TableContainer Document.getTableContainerImpl()
           
 

Uses of TableContainer in org.odftoolkit.simple.presentation
 

Classes in org.odftoolkit.simple.presentation that implement TableContainer
 class Slide
          Slide represents the presentation slide feature of the ODF document.
 

Methods in org.odftoolkit.simple.presentation that return TableContainer
protected  TableContainer Slide.getTableContainerImpl()
           
 

Uses of TableContainer in org.odftoolkit.simple.table
 

Classes in org.odftoolkit.simple.table that implement TableContainer
 class AbstractTableContainer
          AbstractTableContainer is an abstract implementation of the TableContainer interface, with a default implementation for every method defined in TableContainer , except getTableContainerElement().
 

Methods in org.odftoolkit.simple.table with parameters of type TableContainer
static Table Table.newTable(TableContainer tableContainer)
          Construct the Table feature.
static Table Table.newTable(TableContainer tableContainer, int numRows, int numCols)
          Construct the Table feature with a specified row number and column number.
static Table Table.newTable(TableContainer tableContainer, int numRows, int numCols, double marginLeft, double marginRight)
          Construct the Table feature with a specified row number and column number.
static Table Table.newTable(TableContainer tableContainer, int numRows, int numCols, int headerRowNumber, int headerColumnNumber)
          Construct the Table feature with a specified row number, column number, header row number, header column number.
static Table Table.newTable(TableContainer tableContainer, String[] rowLabel, String[] columnLabel, double[][] data)
          Construct the Table feature with a specified 2 dimension array as the data of this table.
static Table Table.newTable(TableContainer tableContainer, String[] rowLabel, String[] columnLabel, String[][] data)
          Construct the Table feature with a specified 2 dimension array as the data of this table.
 

Constructors in org.odftoolkit.simple.table with parameters of type TableContainer
Table.TableBuilder(TableContainer container)
          TableBuilder constructor.
 

Uses of TableContainer in org.odftoolkit.simple.text
 

Classes in org.odftoolkit.simple.text that implement TableContainer
 class Footer
          This class represents footer definition in text document.
 class Header
          This class represents header definition in text document.
 class Section
          This class represents section definition in text document.
 

Methods in org.odftoolkit.simple.text that return TableContainer
protected  TableContainer Section.getTableContainerImpl()
           
 



Copyright © 2010-2017 The Apache Software Foundation. All Rights Reserved.