package org.apache.fop.layoutmgr.table;
-import java.util.Arrays;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
return getActiveRow().safelyGetGridUnit(column);
}
- private PrimaryGridUnit getActivePrimaryGridUnit(int column) {
- GridUnit gu = getActiveGridUnit(column);
- if (gu == null) {
- return null;
- } else {
- return gu.getPrimary();
- }
- }
-
private void calcTotalHeight() {
totalHeight = 0;
for (int i = 0; i < rowGroup.length; i++) {
}
}
- /** @return true if the table uses the separate border model. */
- private boolean isSeparateBorderModel() {
- return getTableLM().getTable().isSeparateBorderModel();
- }
-
/** @return the table layout manager */
private TableLayoutManager getTableLM() {
return this.tclm.getTableLM();