* @param airport
*/
public int generate(String airport) {
Document doc = null;
Paragraph p1 = new Paragraph(
" A Monsieur le directeur de l'aéroport",
CATFONT);
ajouterLigneVide(p1, 2);
Paragraph p2 = new Paragraph(
"Objet : Signature à apposer sur Procés-Verbal", CATFONT);
ajouterLigneVide(p2, 2);
Paragraph p3 = new Paragraph("Monsieur,", CATFONT);
ajouterLigneVide(p3, 1);
Paragraph p4 = new Paragraph(
"Nous avons élaboré le rapport des actions à faire suites aux réclamations que vous avez reçu dans votre aéroport. ",
CATFONT);
ajouterLigneVide(p4, 1);
Paragraph p5 = new Paragraph(
"Comme, nous vous remercions aux efforts que vous fournissez pour collaborer à ce travail. Nous insistons sur le faite de nous envoyer un rapport détaillé englobant toutes les Actions Entreprises Parmi celles incluent dans le tableau suivant :",
CATFONT);
ajouterLigneVide(p5, 2);
Paragraph p6 = new Paragraph(
"Nous vous prions d'agréer, Monsieur, nos salutations distinguées.",
CATFONT);
SimpleDateFormat formatter = new SimpleDateFormat("dd_MM_yyyy");
String file = "/home/matrix/Desktop/pvs/PV_" + formatter.format(new Date())
+ "_" + airport + ".pdf";
try {
doc = new Document();
PdfWriter writer = PdfWriter.getInstance(doc, new FileOutputStream(
file));
writer.setPdfVersion(PdfWriter.PDF_VERSION_1_6);
// opening the document for writing
doc.open();
Image _logo = Image
.getInstance("/home/matrix/apps/workspace/reclaadmin/WebContent/VAADIN/themes/reindeer/layouts/images/logo.gif");
_logo.setAlignment(1);
_logo.scalePercent(50);
Image logo = Image
.getInstance("/home/matrix/apps/workspace/reclaadmin/WebContent/VAADIN/themes/reindeer/layouts/images/slogon.gif");
logo.setAlignment(1);
logo.scalePercent(50);
Paragraph p0 = new Paragraph();
p0.add(_logo);
p0.add(logo);
ajouterLigneVide(p0, 3);
doc.add(p0);
doc.add(p1);