User: rt Date: 2008-07-10 15:53:38+0000 Modified: dba/reportdesign/java/com/sun/star/report/pentaho/output/OfficeDocumentReportTarget.java
Log: INTEGRATION: CWS rptfix02 (1.8.18); FILE MERGED 2008/07/02 06:42:19 oj 1.8.18.1: #i91253# copy the meta.xml File Changes: Directory: /dba/reportdesign/java/com/sun/star/report/pentaho/output/ ===================================================================== File [changed]: OfficeDocumentReportTarget.java Url: http://dba.openoffice.org/source/browse/dba/reportdesign/java/com/sun/star/report/pentaho/output/OfficeDocumentReportTarget.java?r1=1.8&r2=1.9 Delta lines: +7 -0 ------------------- --- OfficeDocumentReportTarget.java 2008-06-16 13:14:07+0000 1.8 +++ OfficeDocumentReportTarget.java 2008-07-10 15:53:36+0000 1.9 @@ -250,6 +250,7 @@ */ private OfficeStylesCollection contentStylesCollection; private final OutputRepository outputRepository; + private final InputRepository inputRepository; private final AttributeNameGenerator tableNameGenerator; private final AttributeNameGenerator frameNameGenerator; private final AttributeNameGenerator autoStyleNameGenerator; @@ -290,6 +291,7 @@ this.frameNameGenerator = new AttributeNameGenerator(); this.autoStyleNameGenerator = new AttributeNameGenerator(); this.outputRepository = outputRepository; + this.inputRepository = inputRepository; this.states = new FastStack(); this.xmlWriters = new FastStack(); this.imageNames = new AttributeNameGenerator(); @@ -315,6 +317,11 @@ return outputRepository; } + protected InputRepository getInputRepository() + { + return inputRepository; + } + /** * Starts the output of a new office document. This method writes the generic 'office:document-content' tag along with * all known namespace declarations. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
