CellConstraints cc = new CellConstraints();
builder.add(createHeaderFieldsPanel(map),cc.xyw(builder.getColumn(), builder
.getRow(), 5));
costTabbedPane= new JTabbedPane();
CostRateTable costRateTable;
for (int i = 0; i < 5; i++) {
costRateTable = ((Resource)object).getCostRateTable(i);
costTableSpreadsheets[i] = createCostTableSpreadsheet(costRateTable);
costTableSpreadsheets[i].setPreferredScrollableViewportSize(new Dimension(500, 200));
JScrollPane ssPane = SpreadSheet.createScrollPaneForTable(costTableSpreadsheets[i]);
costTabbedPane.addTab(costRateTable.getName(),ssPane);
}
createCostTableSpreadsheets();
builder.nextLine(2);
builder.addSeparator(Messages.getString("Text.CostRateTables")); //$NON-NLS-1$
builder.nextLine(2);