area.increaseHeight(areaContainer.getHeight());
return status;
}
- // if this is not the last row, add display space
- if(i!=numChildren-1)
- {
- areaContainer.addDisplaySpace(row.getLargestCellHeight());
- }
}
area.addChild(areaContainer);
areaContainer.end();
}
area.addChild(areaContainer);
//areaContainer.end();
- area.increaseHeight(areaContainer.getHeight());
+ area.addDisplaySpace(areaContainer.getHeight());
return status;
}
area.addChild(areaContainer);
areaContainer.end();
- area.setHeight(largestCellHeight);
+ area.addDisplaySpace(largestCellHeight);
// bug fix from Eric Schaeffer
//area.increaseHeight(largestCellHeight);
public int getAreaHeight() {
return areaContainer.getHeight();
}
- public int getLargestCellHeight()
- {
- return largestCellHeight;
- }
}