/**
  * Adds a nested table.
  *
  * @param table the table to be added to the cell
  */
 public void addCell(PdfPTable table) {
   defaultCell.setTable(table);
   addCell(defaultCell);
   defaultCell.setTable(null);
 }