JRBasePrintFrame frame = new JRBasePrintFrame(
reportConverter.getDefaultStyleProvider());
reportConverter.copyBaseAttributes(element, frame);
TableUtil tableManager =
new TableUtil(
(StandardTable)table,
(JasperDesign)reportConverter.getReport()
);
Map<Cell, Rectangle> cellBounds = tableManager.getCellBounds();
for (Map.Entry pair : cellBounds.entrySet())
{
Cell cell = (Cell)pair.getKey();
Rectangle rectangle = (Rectangle)pair.getValue();