From 871a8857cb68495d6c57e68160f9282bb8a95f2a Mon Sep 17 00:00:00 2001 From: Frederico Palma Date: Fri, 7 Mar 2008 12:38:27 +0000 Subject: [PATCH] git-svn-id: https://svn.coded.pt/svn/SIPRP@706 bb69d46d-e84e-40c8-a05a-06db0d633741 --- trunk/AnaliseAcidentesTrabalho/src/java/pdf/PdfGenerator.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/trunk/AnaliseAcidentesTrabalho/src/java/pdf/PdfGenerator.java b/trunk/AnaliseAcidentesTrabalho/src/java/pdf/PdfGenerator.java index 07a56905..c3caf031 100644 --- a/trunk/AnaliseAcidentesTrabalho/src/java/pdf/PdfGenerator.java +++ b/trunk/AnaliseAcidentesTrabalho/src/java/pdf/PdfGenerator.java @@ -25,6 +25,7 @@ import com.evolute.utils.fop.PDFCreator; public class PdfGenerator { + protected final String imagePath; protected final Estabelecimento estabelecimento; protected final Utilizador tecnicoSuperior; protected final Utilizador medico; @@ -36,6 +37,7 @@ public class PdfGenerator protected final Causa causa; public PdfGenerator( + String imagePath, Estabelecimento estabelecimento, Utilizador tecnicoSuperior, Utilizador medico, @@ -46,6 +48,7 @@ public class PdfGenerator Medida medidas[], Causa causa ) { + this.imagePath = imagePath; this.estabelecimento = estabelecimento; this.tecnicoSuperior = tecnicoSuperior; this.medico = medico;