tabla.addCell(cell);
}
tabla.completeRow();
while (iteFallas.hasNext()) {
FallaLN falla = iteFallas.next();
PdfPCell cell0 = new PdfPCell();
PdfPCell cell1 = new PdfPCell();
PdfPCell cell2 = new PdfPCell();
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
String fecha = sdf.format(falla.getFecha());
cell0.setPhrase(new Phrase(fecha, new Font(
FontFamily.HELVETICA, 8, Font.NORMAL)));
cell1.setPhrase(new Phrase(falla.getEquipoNombre(),
new Font(FontFamily.HELVETICA, 8, Font.NORMAL)));
cell2.setPhrase(new Phrase(falla.getProblema(), new Font(
FontFamily.HELVETICA, 8, Font.NORMAL)));
tabla.addCell(cell0);
tabla.addCell(cell1);
tabla.addCell(cell2);
tabla.completeRow();