コード例 #1
0
  private BaseTable createEntradaDerechaArriba() {
    BaseTable table = new BaseTable(new EntradaReportStyle(), 2, "3.5cm", "2cm");

    table.withNewRow();
    table.withNewCell(createTextParanimf("18pt"));

    TableCell cell = table.withNewCell(logoUji());
    cell.setTextAlign(TextAlignType.CENTER);
    cell.setDisplayAlign(DisplayAlignType.CENTER);

    table.withNewRow();
    table.withNewCell(ResourceProperties.getProperty(locale, "entrada.nombreEntidad"), "2");

    table.withNewRow();
    table.withNewCell(ResourceProperties.getProperty(locale, "entrada.direccion"), "2");

    return table;
  }