* the ITextTable that should be analysed
*
* @author Sebastian R�sgen
*/
private void getTableAnalyse(ITextTable table) throws TextException {
ITextTableProperties props = table.getProperties();
this.properties = props;
this.columnCount = table.getColumnCount();
this.rowCount = table.getRowCount();
this.tableWidth = props.getWidth();
this.cellWidth = props.getCellWidths();
this.repeatHeadline = props.repeatHeadline();
this.textTableColumnsSeparators = props.getTableColumnSeparators();
}