Tag: cws_src680_oj14 User: oj Date: 2007-06-06 07:04:16+0000 Modified: dba/reportdesign/java/com/sun/star/report/ReportJobDefinition.java dba/reportdesign/java/com/sun/star/report/makefile.mk dba/reportdesign/java/com/sun/star/report/util/DefaultJobProperties.java
Log: #i77610# changes to images as well File Changes: Directory: /dba/reportdesign/java/com/sun/star/report/ ====================================================== File [changed]: ReportJobDefinition.java Url: http://dba.openoffice.org/source/browse/dba/reportdesign/java/com/sun/star/report/ReportJobDefinition.java?r1=1.1.2.1&r2=1.1.2.2 Delta lines: +3 -5 ------------------- --- ReportJobDefinition.java 2007-05-09 12:01:06+0000 1.1.2.1 +++ ReportJobDefinition.java 2007-06-06 07:04:14+0000 1.1.2.2 @@ -4,9 +4,9 @@ * * $RCSfile: ReportJobDefinition.java,v $ * - * $Revision: 1.1.2.1 $ + * $Revision: 1.1.2.2 $ * - * last change: $Author: oj $ $Date: 2007/05/09 12:01:06 $ + * last change: $Author: oj $ $Date: 2007/06/06 07:04:14 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -36,8 +36,6 @@ package com.sun.star.report; -import java.util.Map; - /** * The report job is created by the report job factory and holds all properties * required to complete the reporting task. File [changed]: makefile.mk Url: http://dba.openoffice.org/source/browse/dba/reportdesign/java/com/sun/star/report/makefile.mk?r1=1.1.2.2&r2=1.1.2.3 Delta lines: +10 -4 -------------------- --- makefile.mk 2007-05-10 12:14:23+0000 1.1.2.2 +++ makefile.mk 2007-06-06 07:04:14+0000 1.1.2.3 @@ -4,9 +4,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.1.2.2 $ +# $Revision: 1.1.2.3 $ # -# last change: $Author: oj $ $Date: 2007/05/10 12:14:23 $ +# last change: $Author: oj $ $Date: 2007/06/06 07:04:14 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. @@ -42,7 +42,7 @@ .INCLUDE: settings.mk #----- compile .java files ----------------------------------------- -JARFILES = jcommon-1.0.8.jar +JARFILES = ridl.jar unoil.jar jurt.jar juh.jar jut.jar java_uno.jar jcommon-1.0.8.jar JAVAFILES := DataRow.java\ DataSource.java\ DataSourceException.java\ @@ -62,7 +62,13 @@ ReportExpressionMetaData.java\ ReportFunction.java\ ReportJob.java\ - ReportJobDefinition.java + ReportJobDefinition.java\ + ImageService.java\ + SOImageService.java\ + StorageRepository.java\ + SDBCReportData.java\ + SDBCReportDataFactory.java + # --- Targets ------------------------------------------------------ .INCLUDE : target.mk Directory: /dba/reportdesign/java/com/sun/star/report/util/ =========================================================== File [changed]: DefaultJobProperties.java Url: http://dba.openoffice.org/source/browse/dba/reportdesign/java/com/sun/star/report/util/DefaultJobProperties.java?r1=1.1.2.1&r2=1.1.2.2 Delta lines: +7 -7 ------------------- --- DefaultJobProperties.java 2007-05-09 12:03:23+0000 1.1.2.1 +++ DefaultJobProperties.java 2007-06-06 07:04:14+0000 1.1.2.2 @@ -4,9 +4,9 @@ * * $RCSfile: DefaultJobProperties.java,v $ * - * $Revision: 1.1.2.1 $ + * $Revision: 1.1.2.2 $ * - * last change: $Author: oj $ $Date: 2007/05/09 12:03:23 $ + * last change: $Author: oj $ $Date: 2007/06/06 07:04:14 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -58,15 +58,15 @@ this.metaData = metaData; } - public Object getProperty (String key) + public Object getProperty (final String key) { return properties.get(key); } - public void setProperty (String key, Object value) + public void setProperty (final String key, final Object value) throws JobDefinitionException { - Class type = metaData.getParameterType(key); + final Class type = metaData.getParameterType(key); if (type == null) { throw new JobDefinitionException("The parameter name is not known: " + key); @@ -81,7 +81,7 @@ public JobProperties copy() { - DefaultJobProperties props = new DefaultJobProperties(metaData); + final DefaultJobProperties props = new DefaultJobProperties(metaData); props.properties.putAll(properties); return props; } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
