fdo#61726: rename report-builder package to org.libreoffice.report

To prevent future clashes with uno name space rename the
com.sun.star.report package to org.libreoffice.report.

Bump the version to 1.2.4.

Change-Id: Ia06cb7ad8c1528c1d5b5eeb70f1e4b2aa854b70f
Reviewed-on: https://gerrit.libreoffice.org/2578
Reviewed-by: David Ostrovsky <David.Ostrovsky@gmx.de>
Tested-by: David Ostrovsky <David.Ostrovsky@gmx.de>
This commit is contained in:
David Ostrovsky
2013-03-07 08:17:56 +01:00
committed by David Ostrovsky
parent ab8f432b33
commit 6f28efc2a8
236 changed files with 1026 additions and 1026 deletions

View File

@@ -786,7 +786,7 @@ $(eval $(call gb_Helper_register_jars,OXT, \
mediawiki \ mediawiki \
nlpsolver \ nlpsolver \
passive_java \ passive_java \
sun-report-builder \ report-builder \
)) ))
# External executables # External executables

View File

@@ -1007,10 +1007,10 @@ sal_Int32 DBTypeConversion::convertUnicodeStringToLength( const ::rtl::OUString&
} }
} }
else else
return ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.report.pentaho.SOReportJobFactory")); return ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("org.libreoffice.report.pentaho.SOReportJobFactory"));
} }
else else
return ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.report.pentaho.SOReportJobFactory")); return ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("org.libreoffice.report.pentaho.SOReportJobFactory"));
return ::rtl::OUString(); return ::rtl::OUString();
} }
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------

View File

@@ -1627,7 +1627,7 @@ void ODocumentDefinition::loadEmbeddedObject( const Reference< XConnection >& i_
{ {
sDocumentService = GetDocumentServiceFromMediaType( getContentType(), m_aContext, aClassID ); sDocumentService = GetDocumentServiceFromMediaType( getContentType(), m_aContext, aClassID );
// check if we are not a form and // check if we are not a form and
// the com.sun.star.report.pentaho.SOReportJobFactory is not present. // the org.libreoffice.report.pentaho.SOReportJobFactory is not present.
if ( !m_bForm && !(sDocumentService == "com.sun.star.text.TextDocument")) if ( !m_bForm && !(sDocumentService == "com.sun.star.text.TextDocument"))
{ {
// we seem to be a "new style" report, check if report extension is present. // we seem to be a "new style" report, check if report extension is present.

View File

@@ -746,7 +746,7 @@ FeatureState OApplicationController::GetState(sal_uInt16 _nId) const
aReturn.bEnabled = xEnumAccess.is(); aReturn.bEnabled = xEnumAccess.is();
if ( aReturn.bEnabled ) if ( aReturn.bEnabled )
{ {
static OUString s_sReportDesign("com.sun.star.report.pentaho.SOReportJobFactory"); static OUString s_sReportDesign("org.libreoffice.report.pentaho.SOReportJobFactory");
Reference< XEnumeration > xEnumDrivers = xEnumAccess->createContentEnumeration(s_sReportDesign); Reference< XEnumeration > xEnumDrivers = xEnumAccess->createContentEnumeration(s_sReportDesign);
aReturn.bEnabled = xEnumDrivers.is() && xEnumDrivers->hasMoreElements(); aReturn.bEnabled = xEnumDrivers.is() && xEnumDrivers->hasMoreElements();
} }

View File

@@ -25,23 +25,23 @@
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable # in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above. # instead of those above.
$(eval $(call gb_Configuration_Configuration,sun-report-builder,nodeliver)) $(eval $(call gb_Configuration_Configuration,report-builder,nodeliver))
$(eval $(call gb_Configuration_use_configuration,sun-report-builder,registry)) $(eval $(call gb_Configuration_use_configuration,report-builder,registry))
$(eval $(call gb_Configuration_add_schemas,sun-report-builder,reportbuilder/registry/schema,\ $(eval $(call gb_Configuration_add_schemas,report-builder,reportbuilder/registry/schema,\
org/openoffice/Office/ReportDesign.xcs \ org/openoffice/Office/ReportDesign.xcs \
org/openoffice/Office/UI/DbReportWindowState.xcs \ org/openoffice/Office/UI/DbReportWindowState.xcs \
org/openoffice/Office/UI/ReportCommands.xcs \ org/openoffice/Office/UI/ReportCommands.xcs \
)) ))
$(eval $(call gb_Configuration_add_datas,sun-report-builder,reportbuilder/registry/data,\ $(eval $(call gb_Configuration_add_datas,report-builder,reportbuilder/registry/data,\
org/openoffice/Office/Paths.xcu \ org/openoffice/Office/Paths.xcu \
org/openoffice/Office/ReportDesign.xcu \ org/openoffice/Office/ReportDesign.xcu \
org/openoffice/Office/UI/Controller.xcu \ org/openoffice/Office/UI/Controller.xcu \
)) ))
$(eval $(call gb_Configuration_add_localized_datas,sun-report-builder,reportbuilder/registry/data,\ $(eval $(call gb_Configuration_add_localized_datas,report-builder,reportbuilder/registry/data,\
org/openoffice/Office/Accelerators.xcu \ org/openoffice/Office/Accelerators.xcu \
org/openoffice/Office/DataAccess.xcu \ org/openoffice/Office/DataAccess.xcu \
org/openoffice/Office/Embedding.xcu \ org/openoffice/Office/Embedding.xcu \

View File

@@ -32,7 +32,7 @@ $(eval $(call gb_Extension_use_default_license,report-builder))
$(eval $(call gb_Extension_add_files,report-builder,,\ $(eval $(call gb_Extension_add_files,report-builder,,\
$(call gb_Jar_get_outdir_target,reportbuilderwizard) \ $(call gb_Jar_get_outdir_target,reportbuilderwizard) \
$(call gb_Jar_get_outdir_target,sun-report-builder) \ $(call gb_Jar_get_outdir_target,report-builder) \
$(SRCDIR)/reportbuilder/license/readme_en-US.html \ $(SRCDIR)/reportbuilder/license/readme_en-US.html \
$(SRCDIR)/reportbuilder/license/readme_en-US.txt \ $(SRCDIR)/reportbuilder/license/readme_en-US.txt \
$(SRCDIR)/reportbuilder/util/components.rdb \ $(SRCDIR)/reportbuilder/util/components.rdb \

View File

@@ -25,9 +25,9 @@
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable # in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above. # instead of those above.
$(eval $(call gb_Jar_Jar,sun-report-builder)) $(eval $(call gb_Jar_Jar,report-builder))
$(eval $(call gb_Jar_use_jars,sun-report-builder,\ $(eval $(call gb_Jar_use_jars,report-builder,\
java_uno \ java_uno \
juh \ juh \
jurt \ jurt \
@@ -35,7 +35,7 @@ $(eval $(call gb_Jar_use_jars,sun-report-builder,\
unoil \ unoil \
)) ))
$(eval $(call gb_Jar_use_externals,sun-report-builder,\ $(eval $(call gb_Jar_use_externals,report-builder,\
commons-logging \ commons-logging \
flow-engine \ flow-engine \
flute \ flute \
@@ -50,246 +50,246 @@ $(eval $(call gb_Jar_use_externals,sun-report-builder,\
sac \ sac \
)) ))
$(eval $(call gb_Jar_set_manifest,sun-report-builder,$(SRCDIR)/reportbuilder/util/manifest.mf)) $(eval $(call gb_Jar_set_manifest,report-builder,$(SRCDIR)/reportbuilder/util/manifest.mf))
$(eval $(call gb_Jar_set_packageroot,sun-report-builder,com)) $(eval $(call gb_Jar_set_packageroot,report-builder,org))
$(eval $(call gb_Jar_add_sourcefiles,sun-report-builder,\ $(eval $(call gb_Jar_add_sourcefiles,report-builder,\
reportbuilder/java/com/sun/star/report/DataRow \ reportbuilder/java/org/libreoffice/report/DataRow \
reportbuilder/java/com/sun/star/report/DataSource \ reportbuilder/java/org/libreoffice/report/DataSource \
reportbuilder/java/com/sun/star/report/DataSourceException \ reportbuilder/java/org/libreoffice/report/DataSourceException \
reportbuilder/java/com/sun/star/report/DataSourceFactory \ reportbuilder/java/org/libreoffice/report/DataSourceFactory \
reportbuilder/java/com/sun/star/report/ImageService \ reportbuilder/java/org/libreoffice/report/ImageService \
reportbuilder/java/com/sun/star/report/InputRepository \ reportbuilder/java/org/libreoffice/report/InputRepository \
reportbuilder/java/com/sun/star/report/JobDefinitionException \ reportbuilder/java/org/libreoffice/report/JobDefinitionException \
reportbuilder/java/com/sun/star/report/JobProgressIndicator \ reportbuilder/java/org/libreoffice/report/JobProgressIndicator \
reportbuilder/java/com/sun/star/report/JobProperties \ reportbuilder/java/org/libreoffice/report/JobProperties \
reportbuilder/java/com/sun/star/report/OfficeToken \ reportbuilder/java/org/libreoffice/report/OfficeToken \
reportbuilder/java/com/sun/star/report/OutputRepository \ reportbuilder/java/org/libreoffice/report/OutputRepository \
reportbuilder/java/com/sun/star/report/ParameterMap \ reportbuilder/java/org/libreoffice/report/ParameterMap \
reportbuilder/java/com/sun/star/report/ReportAddIn \ reportbuilder/java/org/libreoffice/report/ReportAddIn \
reportbuilder/java/com/sun/star/report/ReportEngineMetaData \ reportbuilder/java/org/libreoffice/report/ReportEngineMetaData \
reportbuilder/java/com/sun/star/report/ReportEngineParameterNames \ reportbuilder/java/org/libreoffice/report/ReportEngineParameterNames \
reportbuilder/java/com/sun/star/report/ReportExecutionException \ reportbuilder/java/org/libreoffice/report/ReportExecutionException \
reportbuilder/java/com/sun/star/report/ReportExpression \ reportbuilder/java/org/libreoffice/report/ReportExpression \
reportbuilder/java/com/sun/star/report/ReportExpressionMetaData \ reportbuilder/java/org/libreoffice/report/ReportExpressionMetaData \
reportbuilder/java/com/sun/star/report/ReportFunction \ reportbuilder/java/org/libreoffice/report/ReportFunction \
reportbuilder/java/com/sun/star/report/ReportJob \ reportbuilder/java/org/libreoffice/report/ReportJob \
reportbuilder/java/com/sun/star/report/ReportJobDefinition \ reportbuilder/java/org/libreoffice/report/ReportJobDefinition \
reportbuilder/java/com/sun/star/report/ReportJobFactory \ reportbuilder/java/org/libreoffice/report/ReportJobFactory \
reportbuilder/java/com/sun/star/report/SDBCReportData \ reportbuilder/java/org/libreoffice/report/SDBCReportData \
reportbuilder/java/com/sun/star/report/SDBCReportDataFactory \ reportbuilder/java/org/libreoffice/report/SDBCReportDataFactory \
reportbuilder/java/com/sun/star/report/SOImageService \ reportbuilder/java/org/libreoffice/report/SOImageService \
reportbuilder/java/com/sun/star/report/StorageRepository \ reportbuilder/java/org/libreoffice/report/StorageRepository \
reportbuilder/java/com/sun/star/report/function/metadata/AuthorFunction \ reportbuilder/java/org/libreoffice/report/function/metadata/AuthorFunction \
reportbuilder/java/com/sun/star/report/function/metadata/AuthorFunctionDescription \ reportbuilder/java/org/libreoffice/report/function/metadata/AuthorFunctionDescription \
reportbuilder/java/com/sun/star/report/function/metadata/MetaDataFunctionCategory \ reportbuilder/java/org/libreoffice/report/function/metadata/MetaDataFunctionCategory \
reportbuilder/java/com/sun/star/report/function/metadata/TitleFunction \ reportbuilder/java/org/libreoffice/report/function/metadata/TitleFunction \
reportbuilder/java/com/sun/star/report/function/metadata/TitleFunctionDescription \ reportbuilder/java/org/libreoffice/report/function/metadata/TitleFunctionDescription \
reportbuilder/java/com/sun/star/report/pentaho/DefaultNameGenerator \ reportbuilder/java/org/libreoffice/report/pentaho/DefaultNameGenerator \
reportbuilder/java/com/sun/star/report/pentaho/OfficeNamespaces \ reportbuilder/java/org/libreoffice/report/pentaho/OfficeNamespaces \
reportbuilder/java/com/sun/star/report/pentaho/PentahoFormulaContext \ reportbuilder/java/org/libreoffice/report/pentaho/PentahoFormulaContext \
reportbuilder/java/com/sun/star/report/pentaho/PentahoReportAddIn \ reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportAddIn \
reportbuilder/java/com/sun/star/report/pentaho/PentahoReportEngine \ reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngine \
reportbuilder/java/com/sun/star/report/pentaho/PentahoReportEngineMetaData \ reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngineMetaData \
reportbuilder/java/com/sun/star/report/pentaho/PentahoReportJob \ reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportJob \
reportbuilder/java/com/sun/star/report/pentaho/SOFormulaOpCodeMapper \ reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaOpCodeMapper \
reportbuilder/java/com/sun/star/report/pentaho/SOFormulaParser \ reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaParser \
reportbuilder/java/com/sun/star/report/pentaho/SOFunctionManager \ reportbuilder/java/org/libreoffice/report/pentaho/SOFunctionManager \
reportbuilder/java/com/sun/star/report/pentaho/SOReportJobFactory \ reportbuilder/java/org/libreoffice/report/pentaho/SOReportJobFactory \
reportbuilder/java/com/sun/star/report/pentaho/StarFunctionCategory \ reportbuilder/java/org/libreoffice/report/pentaho/StarFunctionCategory \
reportbuilder/java/com/sun/star/report/pentaho/StarFunctionDescription \ reportbuilder/java/org/libreoffice/report/pentaho/StarFunctionDescription \
reportbuilder/java/com/sun/star/report/pentaho/StarReportData \ reportbuilder/java/org/libreoffice/report/pentaho/StarReportData \
reportbuilder/java/com/sun/star/report/pentaho/StarReportDataFactory \ reportbuilder/java/org/libreoffice/report/pentaho/StarReportDataFactory \
reportbuilder/java/com/sun/star/report/pentaho/StarReportModule \ reportbuilder/java/org/libreoffice/report/pentaho/StarReportModule \
reportbuilder/java/com/sun/star/report/pentaho/expressions/SumExpression \ reportbuilder/java/org/libreoffice/report/pentaho/expressions/SumExpression \
reportbuilder/java/com/sun/star/report/pentaho/expressions/SumExpressionMetaData \ reportbuilder/java/org/libreoffice/report/pentaho/expressions/SumExpressionMetaData \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/AbstractReportElementLayoutController \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/AbstractReportElementLayoutController \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/FixedTextLayoutController \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/FixedTextLayoutController \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/FormatValueUtility \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/FormatValueUtility \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/FormattedTextLayoutController \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/FormattedTextLayoutController \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/ImageElementContext \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/ImageElementContext \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/ImageElementLayoutController \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/ImageElementLayoutController \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/ObjectOleLayoutController \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/ObjectOleLayoutController \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/OfficeDetailLayoutController \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeDetailLayoutController \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/OfficeGroupInstanceSectionLayoutController \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeGroupInstanceSectionLayoutController \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/OfficeGroupLayoutController \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeGroupLayoutController \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/OfficeGroupSectionLayoutController \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeGroupSectionLayoutController \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/OfficePageSectionLayoutController \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficePageSectionLayoutController \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/OfficeRepeatingStructureLayoutController \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeRepeatingStructureLayoutController \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/OfficeReportLayoutController \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeReportLayoutController \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/OfficeTableLayoutController \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeTableLayoutController \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/OfficeTableTemplateLayoutController \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeTableTemplateLayoutController \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/TableCellLayoutController \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/TableCellLayoutController \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/VariablesCollection \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/VariablesCollection \
reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/VariablesDeclarationLayoutController \ reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/VariablesDeclarationLayoutController \
reportbuilder/java/com/sun/star/report/pentaho/loader/InputRepositoryLoader \ reportbuilder/java/org/libreoffice/report/pentaho/loader/InputRepositoryLoader \
reportbuilder/java/com/sun/star/report/pentaho/loader/InputRepositoryResourceData \ reportbuilder/java/org/libreoffice/report/pentaho/loader/InputRepositoryResourceData \
reportbuilder/java/com/sun/star/report/pentaho/loader/InputResourceKey \ reportbuilder/java/org/libreoffice/report/pentaho/loader/InputResourceKey \
reportbuilder/java/com/sun/star/report/pentaho/model/DataStyle \ reportbuilder/java/org/libreoffice/report/pentaho/model/DataStyle \
reportbuilder/java/com/sun/star/report/pentaho/model/FixedTextElement \ reportbuilder/java/org/libreoffice/report/pentaho/model/FixedTextElement \
reportbuilder/java/com/sun/star/report/pentaho/model/FontFaceDeclsSection \ reportbuilder/java/org/libreoffice/report/pentaho/model/FontFaceDeclsSection \
reportbuilder/java/com/sun/star/report/pentaho/model/FontFaceElement \ reportbuilder/java/org/libreoffice/report/pentaho/model/FontFaceElement \
reportbuilder/java/com/sun/star/report/pentaho/model/FormatCondition \ reportbuilder/java/org/libreoffice/report/pentaho/model/FormatCondition \
reportbuilder/java/com/sun/star/report/pentaho/model/FormattedTextElement \ reportbuilder/java/org/libreoffice/report/pentaho/model/FormattedTextElement \
reportbuilder/java/com/sun/star/report/pentaho/model/ImageElement \ reportbuilder/java/org/libreoffice/report/pentaho/model/ImageElement \
reportbuilder/java/com/sun/star/report/pentaho/model/ObjectOleElement \ reportbuilder/java/org/libreoffice/report/pentaho/model/ObjectOleElement \
reportbuilder/java/com/sun/star/report/pentaho/model/OfficeDetailSection \ reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeDetailSection \
reportbuilder/java/com/sun/star/report/pentaho/model/OfficeDocument \ reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeDocument \
reportbuilder/java/com/sun/star/report/pentaho/model/OfficeGroup \ reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeGroup \
reportbuilder/java/com/sun/star/report/pentaho/model/OfficeGroupInstanceSection \ reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeGroupInstanceSection \
reportbuilder/java/com/sun/star/report/pentaho/model/OfficeGroupSection \ reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeGroupSection \
reportbuilder/java/com/sun/star/report/pentaho/model/OfficeMasterPage \ reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeMasterPage \
reportbuilder/java/com/sun/star/report/pentaho/model/OfficeMasterStyles \ reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeMasterStyles \
reportbuilder/java/com/sun/star/report/pentaho/model/OfficeReport \ reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeReport \
reportbuilder/java/com/sun/star/report/pentaho/model/OfficeStyle \ reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeStyle \
reportbuilder/java/com/sun/star/report/pentaho/model/OfficeStyles \ reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeStyles \
reportbuilder/java/com/sun/star/report/pentaho/model/OfficeStylesCollection \ reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeStylesCollection \
reportbuilder/java/com/sun/star/report/pentaho/model/OfficeTableSection \ reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeTableSection \
reportbuilder/java/com/sun/star/report/pentaho/model/PageLayout \ reportbuilder/java/org/libreoffice/report/pentaho/model/PageLayout \
reportbuilder/java/com/sun/star/report/pentaho/model/PageSection \ reportbuilder/java/org/libreoffice/report/pentaho/model/PageSection \
reportbuilder/java/com/sun/star/report/pentaho/model/RawText \ reportbuilder/java/org/libreoffice/report/pentaho/model/RawText \
reportbuilder/java/com/sun/star/report/pentaho/model/ReportElement \ reportbuilder/java/org/libreoffice/report/pentaho/model/ReportElement \
reportbuilder/java/com/sun/star/report/pentaho/model/TableCellElement \ reportbuilder/java/org/libreoffice/report/pentaho/model/TableCellElement \
reportbuilder/java/com/sun/star/report/pentaho/model/VariablesDeclarationSection \ reportbuilder/java/org/libreoffice/report/pentaho/model/VariablesDeclarationSection \
reportbuilder/java/com/sun/star/report/pentaho/output/ImageProducer \ reportbuilder/java/org/libreoffice/report/pentaho/output/ImageProducer \
reportbuilder/java/com/sun/star/report/pentaho/output/OfficeDocumentReportTarget \ reportbuilder/java/org/libreoffice/report/pentaho/output/OfficeDocumentReportTarget \
reportbuilder/java/com/sun/star/report/pentaho/output/OleProducer \ reportbuilder/java/org/libreoffice/report/pentaho/output/OleProducer \
reportbuilder/java/com/sun/star/report/pentaho/output/StyleUtilities \ reportbuilder/java/org/libreoffice/report/pentaho/output/StyleUtilities \
reportbuilder/java/com/sun/star/report/pentaho/output/StylesWriter \ reportbuilder/java/org/libreoffice/report/pentaho/output/StylesWriter \
reportbuilder/java/com/sun/star/report/pentaho/output/chart/ChartRawReportProcessor \ reportbuilder/java/org/libreoffice/report/pentaho/output/chart/ChartRawReportProcessor \
reportbuilder/java/com/sun/star/report/pentaho/output/chart/ChartRawReportTarget \ reportbuilder/java/org/libreoffice/report/pentaho/output/chart/ChartRawReportTarget \
reportbuilder/java/com/sun/star/report/pentaho/output/spreadsheet/SpreadsheetRawReportProcessor \ reportbuilder/java/org/libreoffice/report/pentaho/output/spreadsheet/SpreadsheetRawReportProcessor \
reportbuilder/java/com/sun/star/report/pentaho/output/spreadsheet/SpreadsheetRawReportTarget \ reportbuilder/java/org/libreoffice/report/pentaho/output/spreadsheet/SpreadsheetRawReportTarget \
reportbuilder/java/com/sun/star/report/pentaho/output/text/MasterPageFactory \ reportbuilder/java/org/libreoffice/report/pentaho/output/text/MasterPageFactory \
reportbuilder/java/com/sun/star/report/pentaho/output/text/PageBreakDefinition \ reportbuilder/java/org/libreoffice/report/pentaho/output/text/PageBreakDefinition \
reportbuilder/java/com/sun/star/report/pentaho/output/text/PageContext \ reportbuilder/java/org/libreoffice/report/pentaho/output/text/PageContext \
reportbuilder/java/com/sun/star/report/pentaho/output/text/TextRawReportProcessor \ reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportProcessor \
reportbuilder/java/com/sun/star/report/pentaho/output/text/TextRawReportTarget \ reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget \
reportbuilder/java/com/sun/star/report/pentaho/output/text/VariablesDeclarations \ reportbuilder/java/org/libreoffice/report/pentaho/output/text/VariablesDeclarations \
reportbuilder/java/com/sun/star/report/pentaho/parser/AttributeSpecification \ reportbuilder/java/org/libreoffice/report/pentaho/parser/AttributeSpecification \
reportbuilder/java/com/sun/star/report/pentaho/parser/ElementReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/ElementReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/OfficeDocumentXmlResourceFactory \ reportbuilder/java/org/libreoffice/report/pentaho/parser/OfficeDocumentXmlResourceFactory \
reportbuilder/java/com/sun/star/report/pentaho/parser/OfficeParserUtil \ reportbuilder/java/org/libreoffice/report/pentaho/parser/OfficeParserUtil \
reportbuilder/java/com/sun/star/report/pentaho/parser/OfficeStylesXmlResourceFactory \ reportbuilder/java/org/libreoffice/report/pentaho/parser/OfficeStylesXmlResourceFactory \
reportbuilder/java/com/sun/star/report/pentaho/parser/StarStyleXmlFactoryModule \ reportbuilder/java/org/libreoffice/report/pentaho/parser/StarStyleXmlFactoryModule \
reportbuilder/java/com/sun/star/report/pentaho/parser/StarXmlFactoryModule \ reportbuilder/java/org/libreoffice/report/pentaho/parser/StarXmlFactoryModule \
reportbuilder/java/com/sun/star/report/pentaho/parser/StyleMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/StyleMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/chart/ChartReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/chart/ChartReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/data/DataStyleReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/data/DataStyleReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/draw/ObjectOleReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/draw/ObjectOleReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/office/BodyReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/office/BodyReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/office/DocumentContentReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/office/DocumentContentReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/office/DocumentStylesReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/office/DocumentStylesReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/office/FontFaceDeclsReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/office/FontFaceDeclsReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/office/MasterStylesReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/office/MasterStylesReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/ConditionalPrintExpressionReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/ConditionalPrintExpressionReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/DetailRootTableReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/DetailRootTableReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/FixedContentReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/FixedContentReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/FormatConditionReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/FormatConditionReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/FormattedTextReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/FormattedTextReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/FunctionReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/FunctionReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/GroupReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/GroupReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/GroupSectionReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/GroupSectionReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/ImageReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/ImageReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/MasterDetailReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/MasterDetailReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/ReportElementReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/ReportElementReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/ReportReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/ReportReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/RootTableReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/RootTableReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/SubDocumentReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/SubDocumentReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/style/FontFaceReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/style/FontFaceReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/style/MasterPageReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/style/MasterPageReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/style/OfficeStyleReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/style/OfficeStyleReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/style/OfficeStylesReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/style/OfficeStylesReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/style/PageLayoutReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/style/PageLayoutReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/style/StyleDefinitionReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/style/StyleDefinitionReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/OneOfConstantsMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/OneOfConstantsMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/draw/TextAreaVerticalAlignMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/draw/TextAreaVerticalAlignMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/fo/BackgroundColorMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/fo/BackgroundColorMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/fo/BorderRightMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/fo/BorderRightMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/fo/ColorMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/fo/ColorMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/fo/FontSizeMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/fo/FontSizeMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/fo/FontStyleMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/fo/FontStyleMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/fo/FontWeightMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/fo/FontWeightMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/fo/TextAlignMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/fo/TextAlignMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/FontFamilyGenericMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/style/FontFamilyGenericMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/FontFamilyMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/style/FontFamilyMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/FontNameMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/style/FontNameMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/FontPitchMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/style/FontPitchMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/FontReliefMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/style/FontReliefMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/TextEmphasizeMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/style/TextEmphasizeMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/TextUnderlineColorMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/style/TextUnderlineColorMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/TextUnderlineStyleMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/style/TextUnderlineStyleMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/TextUnderlineWidthMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/style/TextUnderlineWidthMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/TextUnderlineWordMode \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/style/TextUnderlineWordMode \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/VerticalAlignMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/style/VerticalAlignMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/table/ColumnWidthMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/table/ColumnWidthMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/table/RowHeightMapper \ reportbuilder/java/org/libreoffice/report/pentaho/parser/stylemapper/table/RowHeightMapper \
reportbuilder/java/com/sun/star/report/pentaho/parser/table/CoveredCellReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/table/CoveredCellReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/table/TableCellReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/table/TableCellReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/table/TableColumnReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/table/TableColumnReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/table/TableColumnsReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/table/TableColumnsReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/table/TableReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/table/TableReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/table/TableRowReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/table/TableRowReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/table/TableRowsReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/table/TableRowsReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/text/NoCDATATextContentReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/text/NoCDATATextContentReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/text/TextContentReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/text/TextContentReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/parser/xlink/XLinkReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/parser/xlink/XLinkReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/styles/LengthCalculator \ reportbuilder/java/org/libreoffice/report/pentaho/styles/LengthCalculator \
reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMapper \ reportbuilder/java/org/libreoffice/report/pentaho/styles/StyleMapper \
reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMapperKey \ reportbuilder/java/org/libreoffice/report/pentaho/styles/StyleMapperKey \
reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMapperXmlFactoryModule \ reportbuilder/java/org/libreoffice/report/pentaho/styles/StyleMapperXmlFactoryModule \
reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMapperXmlResourceFactory \ reportbuilder/java/org/libreoffice/report/pentaho/styles/StyleMapperXmlResourceFactory \
reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMappingDocumentReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/styles/StyleMappingDocumentReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMappingReadHandler \ reportbuilder/java/org/libreoffice/report/pentaho/styles/StyleMappingReadHandler \
reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMappingRule \ reportbuilder/java/org/libreoffice/report/pentaho/styles/StyleMappingRule \
reportbuilder/java/com/sun/star/report/util/DefaultJobProperties \ reportbuilder/java/org/libreoffice/report/util/DefaultJobProperties \
reportbuilder/java/com/sun/star/report/util/DefaultParameterMap \ reportbuilder/java/org/libreoffice/report/util/DefaultParameterMap \
reportbuilder/java/com/sun/star/report/util/DefaultReportJobDefinition \ reportbuilder/java/org/libreoffice/report/util/DefaultReportJobDefinition \
reportbuilder/java/com/sun/star/report/util/ManifestWriter \ reportbuilder/java/org/libreoffice/report/util/ManifestWriter \
)) ))
$(eval $(call gb_Jar_add_packagefiles,sun-report-builder,,\ $(eval $(call gb_Jar_add_packagefiles,report-builder,,\
$(SRCDIR)/reportbuilder/java/jfreereport.properties \ $(SRCDIR)/reportbuilder/java/jfreereport.properties \
$(SRCDIR)/reportbuilder/java/libformula.properties \ $(SRCDIR)/reportbuilder/java/libformula.properties \
$(SRCDIR)/reportbuilder/java/loader.properties \ $(SRCDIR)/reportbuilder/java/loader.properties \
)) ))
$(eval $(call gb_Jar_add_packagefiles,sun-report-builder,com/sun/star/report/function/metadata,\ $(eval $(call gb_Jar_add_packagefiles,report-builder,org/libreoffice/report/function/metadata,\
$(SRCDIR)/reportbuilder/java/com/sun/star/report/function/metadata/Author-Function.properties \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/function/metadata/Author-Function.properties \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/function/metadata/Author-Function_en_US.properties \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/function/metadata/Author-Function_en_US.properties \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/function/metadata/Title-Function.properties \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/function/metadata/Title-Function.properties \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/function/metadata/Title-Function_en_US.properties \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/function/metadata/Title-Function_en_US.properties \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/function/metadata/category.properties \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/function/metadata/category.properties \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/function/metadata/category_en_US.properties \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/function/metadata/category_en_US.properties \
)) ))
$(eval $(call gb_Jar_add_packagefiles,sun-report-builder,com/sun/star/report/pentaho,\ $(eval $(call gb_Jar_add_packagefiles,report-builder,org/libreoffice/report/pentaho,\
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/configuration.properties \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/configuration.properties \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/module.properties \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/module.properties \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/oasis-datastyle.css \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/oasis-datastyle.css \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/oasis-draw.css \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/oasis-draw.css \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/oasis-form.css \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/oasis-form.css \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/oasis-style.css \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/oasis-style.css \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/oasis-table.css \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/oasis-table.css \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/oasis-text.css \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/oasis-text.css \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/smil.css \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/smil.css \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/star-office.css \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/star-office.css \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/star-report.css \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/star-report.css \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/star-rpt.css \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/star-rpt.css \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/svg.css \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/svg.css \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/xsl-fo.css \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/xsl-fo.css \
)) ))
$(eval $(call gb_Jar_add_packagefiles,sun-report-builder,com/sun/star/report/pentaho/parser,\ $(eval $(call gb_Jar_add_packagefiles,report-builder,org/libreoffice/report/pentaho/parser,\
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/parser/rpt-schema-v1.0-os.xsd \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt-schema-v1.0-os.xsd \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/parser/selectors.properties \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/parser/selectors.properties \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/parser/style-mapping.txt \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/parser/style-mapping.txt \
)) ))
$(eval $(call gb_Jar_add_packagefiles,sun-report-builder,com/sun/star/report/pentaho/styles,\ $(eval $(call gb_Jar_add_packagefiles,report-builder,org/libreoffice/report/pentaho/styles,\
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/styles/stylemapper.xml \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/styles/stylemapper.xml \
$(SRCDIR)/reportbuilder/java/com/sun/star/report/pentaho/styles/stylemapper.xsd \ $(SRCDIR)/reportbuilder/java/org/libreoffice/report/pentaho/styles/stylemapper.xsd \
)) ))
# vim: set shiftwidth=4 tabstop=4 noexpandtab: # vim: set shiftwidth=4 tabstop=4 noexpandtab:

View File

@@ -1,147 +0,0 @@
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This file incorporates work covered by the following license notice:
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed
# with this work for additional information regarding copyright
# ownership. The ASF licenses this file to you under the Apache
# License, Version 2.0 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
#
# x-no-translate
##
# Do not modify the following lines. They connect this module to the central
# parser registry.
org.pentaho.reporting.libraries.resourceloader.factory.modules.com.sun.star.report.pentaho.model.OfficeDocument.star=com.sun.star.report.pentaho.parser.StarXmlFactoryModule
org.pentaho.reporting.libraries.resourceloader.factory.modules.com.sun.star.report.pentaho.model.OfficeStylesCollection.star=com.sun.star.report.pentaho.parser.StarStyleXmlFactoryModule
org.pentaho.reporting.libraries.resourceloader.factory.modules.com.sun.star.report.pentaho.styles.StyleMapper.star=com.sun.star.report.pentaho.styles.StyleMapperXmlFactoryModule
##
# The known namespaces.
#
org.jfree.report.namespaces.star-rpt.Uri=http://openoffice.org/2005/report
org.jfree.report.namespaces.star-rpt.Default-Style=res://com/sun/star/report/pentaho/star-rpt.css
org.jfree.report.namespaces.star-rpt.Prefix=rpt
org.jfree.report.namespaces.star-rpt.ClassAttr=style-name
org.jfree.report.namespaces.star-office.Uri=http://openoffice.org/2004/office
org.jfree.report.namespaces.star-office.Default-Style=res://com/sun/star/report/pentaho/star-office.css
org.jfree.report.namespaces.star-office.Prefix=office
org.jfree.report.namespaces.star-office.ClassAttr=style-name
org.jfree.report.namespaces.oasis-style.Uri=urn:oasis:names:tc:opendocument:xmlns:style:1.0
org.jfree.report.namespaces.oasis-style.Default-Style=res://com/sun/star/report/pentaho/oasis-style.css
org.jfree.report.namespaces.oasis-style.Prefix=style
org.jfree.report.namespaces.oasis-table.Uri=urn:oasis:names:tc:opendocument:xmlns:table:1.0
org.jfree.report.namespaces.oasis-table.Default-Style=res://com/sun/star/report/pentaho/oasis-table.css
org.jfree.report.namespaces.oasis-table.Prefix=table
org.jfree.report.namespaces.oasis-table.ClassAttr=style-name
org.jfree.report.namespaces.oasis-draw.Uri=urn:oasis:names:tc:opendocument:xmlns:drawing:1.0
org.jfree.report.namespaces.oasis-draw.Default-Style=res://com/sun/star/report/pentaho/oasis-draw.css
org.jfree.report.namespaces.oasis-draw.Prefix=draw
org.jfree.report.namespaces.oasis-draw.ClassAttr=style-name
org.jfree.report.namespaces.oasis-chart.Uri=urn:oasis:names:tc:opendocument:xmlns:chart:1.0
org.jfree.report.namespaces.oasis-chart.Default-Style=res://com/sun/star/report/pentaho/oasis-chart.css
org.jfree.report.namespaces.oasis-chart.Prefix=chart
org.jfree.report.namespaces.oasis-chart.ClassAttr=style-name
org.jfree.report.namespaces.oasis-text.Uri=urn:oasis:names:tc:opendocument:xmlns:text:1.0
org.jfree.report.namespaces.oasis-text.Default-Style=res://com/sun/star/report/pentaho/oasis-text.css
org.jfree.report.namespaces.oasis-text.Prefix=text
org.jfree.report.namespaces.oasis-text.ClassAttr=style-name
org.jfree.report.namespaces.oasis-number.Uri=urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0
org.jfree.report.namespaces.oasis-number.Default-Style=res://com/sun/star/report/pentaho/oasis-number.css
org.jfree.report.namespaces.oasis-number.Prefix=number
org.jfree.report.namespaces.oasis-number.ClassAttr=style-name
org.jfree.report.namespaces.oasis-form.Uri=urn:oasis:names:tc:opendocument:xmlns:form:1.0
org.jfree.report.namespaces.oasis-form.Default-Style=res://com/sun/star/report/pentaho/oasis-form.css
org.jfree.report.namespaces.oasis-form.Prefix=form
#
# This defines a subset of the real XSL-FO standard.
org.jfree.report.namespaces.oasis-compat-fo.Uri=urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0
org.jfree.report.namespaces.oasis-compat-fo.Default-Style=res://com/sun/star/report/pentaho/xsl-fo.css
org.jfree.report.namespaces.oasis-compat-fo.Prefix=fo
#
# This defines a subset of the real XSL-FO standard.
org.jfree.report.namespaces.oasis-compat-svg.Uri=urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0
org.jfree.report.namespaces.oasis-compat-svg.Default-Style=res://com/sun/star/report/pentaho/svg.css
org.jfree.report.namespaces.oasis-compat-svg.Prefix=svg
#
# This defines a subset of the real XSL-FO standard.
org.jfree.report.namespaces.oasis-compat-smil.Uri=urn:oasis:names:tc:opendocument:xmlns:smil-compatible:1.0
org.jfree.report.namespaces.oasis-compat-smil.Default-Style=res://com/sun/star/report/pentaho/smil.css
org.jfree.report.namespaces.oasis-compat-smil.Prefix=svg
org.jfree.report.namespaces.xsl-fo.Uri=http://www.w3.org/1999/XSL/Format
org.jfree.report.namespaces.xsl-fo.Default-Style=res://com/sun/star/report/pentaho/xsl-fo.css
org.jfree.report.namespaces.xsl-fo.Prefix=fo
org.jfree.report.namespaces.svg.Uri=http://www.w3.org/2000/svg
org.jfree.report.namespaces.svg.Default-Style=res://com/sun/star/report/pentaho/svg.css
org.jfree.report.namespaces.svg.Prefix=svg
org.jfree.report.namespaces.svg.ClassAttr=class
org.jfree.report.namespaces.svg.StyleAttr=style
org.jfree.report.namespaces.xml-xlink.Uri=http://www.w3.org/1999/xlink
#org.jfree.report.namespaces.xml-xlink.Default-Style=res://com/sun/star/report/pentaho/xml-xlink.css
org.jfree.report.namespaces.xml-xlink.Prefix=xlink
#
# Tag-definition for the XML-writer.
# Prefix is 'com.sun.star.report.pentaho.output.'
#
# Declare the namespaces (this is independent of the ones defined above ..)
# <prefix>"namespace."<ns-prefix>=<ns-uri>
com.sun.star.report.pentaho.output.namespace.oasis-text=urn:oasis:names:tc:opendocument:xmlns:text:1.0
com.sun.star.report.pentaho.output.default.oasis-text=deny
com.sun.star.report.pentaho.output.namespace.oasis-config=urn:oasis:names:tc:opendocument:xmlns:config:1.0
com.sun.star.report.pentaho.output.default.oasis-config=allow
#
# Next define the tags for which we want to customize the indent-behaviour
com.sun.star.report.pentaho.output.tag.oasis-text.p=deny
com.sun.star.report.pentaho.output.tag.oasis-text.section=allow
com.sun.star.report.pentaho.output.tag.oasis-text.variable-decls=allow
com.sun.star.report.pentaho.output.tag.oasis-text.variable-decl=allow
com.sun.star.report.pentaho.output.tag.oasis-config.config-item=deny
com.sun.star.report.pentaho.output.namespace.oasis-data=urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0
com.sun.star.report.pentaho.output.default.oasis-data=allow
com.sun.star.report.pentaho.output.tag.oasis-data.text=deny
com.sun.star.report.pentaho.output.tag.oasis-data.currency-symbol=deny
com.sun.star.report.pentaho.output.tag.oasis-data.embedded-text=deny
com.sun.star.report.pentaho.output.namespace.oasis-draw=urn:oasis:names:tc:opendocument:xmlns:drawing:1.0
com.sun.star.report.pentaho.output.default.oasis-draw=deny
org.jfree.report.flow.structure.com.sun.star.report.pentaho.model.FixedTextElement=com.sun.star.report.pentaho.layoutprocessor.FixedTextLayoutController
org.jfree.report.flow.structure.com.sun.star.report.pentaho.model.FormattedTextElement=com.sun.star.report.pentaho.layoutprocessor.FormattedTextLayoutController
org.jfree.report.flow.structure.com.sun.star.report.pentaho.model.ObjectOleElement=com.sun.star.report.pentaho.layoutprocessor.ObjectOleLayoutController
org.jfree.report.flow.structure.com.sun.star.report.pentaho.model.ImageElement=com.sun.star.report.pentaho.layoutprocessor.ImageElementLayoutController
org.jfree.report.flow.structure.com.sun.star.report.pentaho.model.TableCellElement=com.sun.star.report.pentaho.layoutprocessor.TableCellLayoutController
org.jfree.report.flow.structure.com.sun.star.report.pentaho.model.OfficeReport=com.sun.star.report.pentaho.layoutprocessor.OfficeReportLayoutController
org.jfree.report.flow.structure.com.sun.star.report.pentaho.model.OfficeGroup=com.sun.star.report.pentaho.layoutprocessor.OfficeGroupLayoutController
org.jfree.report.flow.structure.com.sun.star.report.pentaho.model.OfficeGroupSection=com.sun.star.report.pentaho.layoutprocessor.OfficeGroupSectionLayoutController
org.jfree.report.flow.structure.com.sun.star.report.pentaho.model.VariablesDeclarationSection=com.sun.star.report.pentaho.layoutprocessor.VariablesDeclarationLayoutController
org.jfree.report.flow.structure.com.sun.star.report.pentaho.model.OfficeDetailSection=com.sun.star.report.pentaho.layoutprocessor.OfficeDetailLayoutController
org.jfree.report.flow.structure.com.sun.star.report.pentaho.model.OfficeTableSection=com.sun.star.report.pentaho.layoutprocessor.OfficeTableLayoutController
org.jfree.report.flow.structure.com.sun.star.report.pentaho.model.OfficeGroupInstanceSection=com.sun.star.report.pentaho.layoutprocessor.OfficeGroupInstanceSectionLayoutController

View File

@@ -17,5 +17,5 @@
# #
# x-no-translate # x-no-translate
org.jfree.report.modules.sun.report.Module=com.sun.star.report.pentaho.StarReportModule org.jfree.report.modules.sun.report.Module=org.libreoffice.report.pentaho.StarReportModule

View File

@@ -28,7 +28,7 @@ org.pentaho.reporting.libraries.formula.datesystem.ExcelHack=false
## ##
# Meta data functions # Meta data functions
org.pentaho.reporting.libraries.formula.functions.metadata.Author.class=com.sun.star.report.function.metadata.AuthorFunction org.pentaho.reporting.libraries.formula.functions.metadata.Author.class=org.libreoffice.report.function.metadata.AuthorFunction
org.pentaho.reporting.libraries.formula.functions.metadata.Author.description=com.sun.star.report.function.metadata.AuthorFunctionDescription org.pentaho.reporting.libraries.formula.functions.metadata.Author.description=org.libreoffice.report.function.metadata.AuthorFunctionDescription
org.pentaho.reporting.libraries.formula.functions.metadata.Title.class=com.sun.star.report.function.metadata.TitleFunction org.pentaho.reporting.libraries.formula.functions.metadata.Title.class=org.libreoffice.report.function.metadata.TitleFunction
org.pentaho.reporting.libraries.formula.functions.metadata.Title.description=com.sun.star.report.function.metadata.TitleFunctionDescription org.pentaho.reporting.libraries.formula.functions.metadata.Title.description=org.libreoffice.report.function.metadata.TitleFunctionDescription

View File

@@ -17,6 +17,6 @@
# #
# x-no-translate # x-no-translate
org.pentaho.reporting.libraries.resourceloader.factory.type.com.sun.star.report.pentaho.model.OfficeDocument=com.sun.star.report.pentaho.parser.OfficeDocumentXmlResourceFactory org.pentaho.reporting.libraries.resourceloader.factory.type.org.libreoffice.report.pentaho.model.OfficeDocument=org.libreoffice.report.pentaho.parser.OfficeDocumentXmlResourceFactory
org.pentaho.reporting.libraries.resourceloader.factory.type.com.sun.star.report.pentaho.model.OfficeStylesCollection=com.sun.star.report.pentaho.parser.OfficeStylesXmlResourceFactory org.pentaho.reporting.libraries.resourceloader.factory.type.org.libreoffice.report.pentaho.model.OfficeStylesCollection=org.libreoffice.report.pentaho.parser.OfficeStylesXmlResourceFactory
org.pentaho.reporting.libraries.resourceloader.factory.type.com.sun.star.report.pentaho.styles.StyleMapper=com.sun.star.report.pentaho.styles.StyleMapperXmlResourceFactory org.pentaho.reporting.libraries.resourceloader.factory.type.org.libreoffice.report.pentaho.styles.StyleMapper=org.libreoffice.report.pentaho.styles.StyleMapperXmlResourceFactory

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
/** /**
* This feeds data into the reporting engine, in case the data has been provided * This feeds data into the reporting engine, in case the data has been provided

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
/** /**
* This feeds data into the reporting engine, in case the data has been provided * This feeds data into the reporting engine, in case the data has been provided

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
/** /**
* A general exception to indicate that there was an error while accessing the * A general exception to indicate that there was an error while accessing the

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
import java.util.Map; import java.util.Map;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
import com.sun.star.awt.Size; import com.sun.star.awt.Size;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
/** /**
* Creation-Date: 05.02.2006, 17:36:33 * Creation-Date: 05.02.2006, 17:36:33

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
/** /**
* Based on * Based on

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
public interface JobProperties public interface JobProperties
{ {

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
public class OfficeToken public class OfficeToken
{ {

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
import java.io.IOException; import java.io.IOException;
import java.io.OutputStream; import java.io.OutputStream;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
public interface ParameterMap public interface ParameterMap
{ {

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
/** /**
* A report add-in defines a set of expressions, which can * A report add-in defines a set of expressions, which can

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
public interface ReportEngineMetaData public interface ReportEngineMetaData
{ {

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
/** /**
* Making this enumeration typesafe and fully defined here would * Making this enumeration typesafe and fully defined here would

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
public class ReportExecutionException extends Exception public class ReportExecutionException extends Exception
{ {

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
/** /**
* Expressions are simple computation components. * Expressions are simple computation components.

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
import java.util.Locale; import java.util.Locale;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
/** /**
* Functions are statefull computation components. * Functions are statefull computation components.

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
import java.io.IOException; import java.io.IOException;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
/** /**
* The report job is created by the report job factory and holds all properties * The report job is created by the report job factory and holds all properties

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
import com.sun.star.beans.NamedValue; import com.sun.star.beans.NamedValue;
import com.sun.star.lang.IllegalArgumentException; import com.sun.star.lang.IllegalArgumentException;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
import com.sun.star.beans.UnknownPropertyException; import com.sun.star.beans.UnknownPropertyException;
import com.sun.star.beans.XPropertySet; import com.sun.star.beans.XPropertySet;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
import com.sun.star.beans.PropertyVetoException; import com.sun.star.beans.PropertyVetoException;
import com.sun.star.beans.UnknownPropertyException; import com.sun.star.beans.UnknownPropertyException;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
import com.sun.star.awt.Size; import com.sun.star.awt.Size;
import com.sun.star.beans.PropertyValue; import com.sun.star.beans.PropertyValue;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report; package org.libreoffice.report;
import com.sun.star.beans.PropertyVetoException; import com.sun.star.beans.PropertyVetoException;
import com.sun.star.beans.UnknownPropertyException; import com.sun.star.beans.UnknownPropertyException;

View File

@@ -15,9 +15,9 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.function.metadata; package org.libreoffice.report.function.metadata;
import com.sun.star.report.ReportEngineParameterNames; import org.libreoffice.report.ReportEngineParameterNames;
import org.pentaho.reporting.libraries.formula.EvaluationException; import org.pentaho.reporting.libraries.formula.EvaluationException;
import org.pentaho.reporting.libraries.formula.FormulaContext; import org.pentaho.reporting.libraries.formula.FormulaContext;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.function.metadata; package org.libreoffice.report.function.metadata;
import org.pentaho.reporting.libraries.formula.function.AbstractFunctionDescription; import org.pentaho.reporting.libraries.formula.function.AbstractFunctionDescription;
import org.pentaho.reporting.libraries.formula.function.FunctionCategory; import org.pentaho.reporting.libraries.formula.function.FunctionCategory;
@@ -27,7 +27,7 @@ public class AuthorFunctionDescription extends AbstractFunctionDescription
public AuthorFunctionDescription() public AuthorFunctionDescription()
{ {
super("AUTHOR", "com.sun.star.report.function.metadata.Author-Function"); super("AUTHOR", "org.libreoffice.report.function.metadata.Author-Function");
} }
public FunctionCategory getCategory() public FunctionCategory getCategory()

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.function.metadata; package org.libreoffice.report.function.metadata;
import org.pentaho.reporting.libraries.formula.function.AbstractFunctionCategory; import org.pentaho.reporting.libraries.formula.function.AbstractFunctionCategory;
import org.pentaho.reporting.libraries.formula.function.FunctionCategory; import org.pentaho.reporting.libraries.formula.function.FunctionCategory;
@@ -27,7 +27,7 @@ public class MetaDataFunctionCategory extends AbstractFunctionCategory
private MetaDataFunctionCategory() private MetaDataFunctionCategory()
{ {
super("com.sun.star.report.function.metadata.category"); super("org.libreoffice.report.function.metadata.category");
} }
} }

View File

@@ -15,9 +15,9 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.function.metadata; package org.libreoffice.report.function.metadata;
import com.sun.star.report.ReportEngineParameterNames; import org.libreoffice.report.ReportEngineParameterNames;
import org.pentaho.reporting.libraries.formula.EvaluationException; import org.pentaho.reporting.libraries.formula.EvaluationException;
import org.pentaho.reporting.libraries.formula.FormulaContext; import org.pentaho.reporting.libraries.formula.FormulaContext;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.function.metadata; package org.libreoffice.report.function.metadata;
import org.pentaho.reporting.libraries.formula.function.AbstractFunctionDescription; import org.pentaho.reporting.libraries.formula.function.AbstractFunctionDescription;
import org.pentaho.reporting.libraries.formula.function.FunctionCategory; import org.pentaho.reporting.libraries.formula.function.FunctionCategory;
@@ -27,7 +27,7 @@ public class TitleFunctionDescription extends AbstractFunctionDescription
public TitleFunctionDescription() public TitleFunctionDescription()
{ {
super("TITLE", "com.sun.star.report.function.metadata.Title-Function"); super("TITLE", "org.libreoffice.report.function.metadata.Title-Function");
} }
public FunctionCategory getCategory() public FunctionCategory getCategory()

View File

@@ -15,9 +15,9 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho; package org.libreoffice.report.pentaho;
import com.sun.star.report.OutputRepository; import org.libreoffice.report.OutputRepository;
import java.io.IOException; import java.io.IOException;

View File

@@ -1,4 +1,4 @@
RegistrationClassName: com.sun.star.report.pentaho.SOReportJobFactory RegistrationClassName: org.libreoffice.report.pentaho.SOReportJobFactory
Class-Path: reportbuilderwizard.jar Class-Path: reportbuilderwizard.jar
flute-1.1.6.jar libserializer-1.1.6.jar libbase-1.1.6.jar flute-1.1.6.jar libserializer-1.1.6.jar libbase-1.1.6.jar
libfonts-1.1.6.jar libformula-1.1.7.jar liblayout-0.2.10.jar libfonts-1.1.6.jar libformula-1.1.7.jar liblayout-0.2.10.jar

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho; package org.libreoffice.report.pentaho;
/** /**
* Creation-Date: Feb 22, 2007, 1:53:29 PM * Creation-Date: Feb 22, 2007, 1:53:29 PM

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho; package org.libreoffice.report.pentaho;
import org.pentaho.reporting.libraries.base.config.Configuration; import org.pentaho.reporting.libraries.base.config.Configuration;
import org.pentaho.reporting.libraries.formula.ContextEvaluationException; import org.pentaho.reporting.libraries.formula.ContextEvaluationException;

View File

@@ -15,12 +15,12 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho; package org.libreoffice.report.pentaho;
import com.sun.star.report.ReportAddIn; import org.libreoffice.report.ReportAddIn;
import com.sun.star.report.ReportExpression; import org.libreoffice.report.ReportExpression;
import com.sun.star.report.ReportExpressionMetaData; import org.libreoffice.report.ReportExpressionMetaData;
import com.sun.star.report.pentaho.expressions.SumExpression; import org.libreoffice.report.pentaho.expressions.SumExpression;
/** /**
* This class is a dummy implementation. Ignore it for now, we may extend this * This class is a dummy implementation. Ignore it for now, we may extend this

View File

@@ -15,13 +15,13 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho; package org.libreoffice.report.pentaho;
import com.sun.star.report.JobDefinitionException; import org.libreoffice.report.JobDefinitionException;
import com.sun.star.report.ReportEngineMetaData; import org.libreoffice.report.ReportEngineMetaData;
import com.sun.star.report.ReportJob; import org.libreoffice.report.ReportJob;
import com.sun.star.report.ReportJobDefinition; import org.libreoffice.report.ReportJobDefinition;
import com.sun.star.report.util.DefaultReportJobDefinition; import org.libreoffice.report.util.DefaultReportJobDefinition;
import org.jfree.report.JFreeReportBoot; import org.jfree.report.JFreeReportBoot;
public class PentahoReportEngine public class PentahoReportEngine
@@ -50,7 +50,7 @@ public class PentahoReportEngine
* *
* @return the report job definition for the job description. * @return the report job definition for the job description.
* *
* @throws com.sun.star.report.JobDefinitionException * @throws org.libreoffice.report.JobDefinitionException
* *
*/ */
public ReportJob createJob(final ReportJobDefinition definition) public ReportJob createJob(final ReportJobDefinition definition)

View File

@@ -15,15 +15,15 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho; package org.libreoffice.report.pentaho;
import com.sun.star.report.DataSourceFactory; import org.libreoffice.report.DataSourceFactory;
import com.sun.star.report.ImageService; import org.libreoffice.report.ImageService;
import com.sun.star.report.InputRepository; import org.libreoffice.report.InputRepository;
import com.sun.star.report.OutputRepository; import org.libreoffice.report.OutputRepository;
import com.sun.star.report.ReportEngineMetaData; import org.libreoffice.report.ReportEngineMetaData;
import com.sun.star.report.ReportEngineParameterNames; import org.libreoffice.report.ReportEngineParameterNames;
import com.sun.star.report.ReportJobFactory; import org.libreoffice.report.ReportJobFactory;
import java.util.HashMap; import java.util.HashMap;
import java.util.HashSet; import java.util.HashSet;

View File

@@ -15,29 +15,29 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho; package org.libreoffice.report.pentaho;
import com.sun.star.report.DataSourceFactory; import org.libreoffice.report.DataSourceFactory;
import com.sun.star.report.ImageService; import org.libreoffice.report.ImageService;
import com.sun.star.report.InputRepository; import org.libreoffice.report.InputRepository;
import com.sun.star.report.JobDefinitionException; import org.libreoffice.report.JobDefinitionException;
import com.sun.star.report.JobProgressIndicator; import org.libreoffice.report.JobProgressIndicator;
import com.sun.star.report.JobProperties; import org.libreoffice.report.JobProperties;
import com.sun.star.report.OutputRepository; import org.libreoffice.report.OutputRepository;
import com.sun.star.report.ParameterMap; import org.libreoffice.report.ParameterMap;
import com.sun.star.report.ReportEngineParameterNames; import org.libreoffice.report.ReportEngineParameterNames;
import com.sun.star.report.ReportExecutionException; import org.libreoffice.report.ReportExecutionException;
import com.sun.star.report.ReportJob; import org.libreoffice.report.ReportJob;
import com.sun.star.report.ReportJobDefinition; import org.libreoffice.report.ReportJobDefinition;
import com.sun.star.report.SDBCReportDataFactory; import org.libreoffice.report.SDBCReportDataFactory;
import com.sun.star.report.pentaho.loader.InputRepositoryLoader; import org.libreoffice.report.pentaho.loader.InputRepositoryLoader;
import com.sun.star.report.pentaho.model.OfficeDetailSection; import org.libreoffice.report.pentaho.model.OfficeDetailSection;
import com.sun.star.report.pentaho.model.OfficeDocument; import org.libreoffice.report.pentaho.model.OfficeDocument;
import com.sun.star.report.pentaho.model.OfficeGroup; import org.libreoffice.report.pentaho.model.OfficeGroup;
import com.sun.star.report.pentaho.model.OfficeReport; import org.libreoffice.report.pentaho.model.OfficeReport;
import com.sun.star.report.pentaho.output.chart.ChartRawReportProcessor; import org.libreoffice.report.pentaho.output.chart.ChartRawReportProcessor;
import com.sun.star.report.pentaho.output.spreadsheet.SpreadsheetRawReportProcessor; import org.libreoffice.report.pentaho.output.spreadsheet.SpreadsheetRawReportProcessor;
import com.sun.star.report.pentaho.output.text.TextRawReportProcessor; import org.libreoffice.report.pentaho.output.text.TextRawReportProcessor;
import java.io.IOException; import java.io.IOException;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho; package org.libreoffice.report.pentaho;
import com.sun.star.lang.XServiceInfo; import com.sun.star.lang.XServiceInfo;
import com.sun.star.lib.uno.helper.WeakBase; import com.sun.star.lib.uno.helper.WeakBase;
@@ -31,7 +31,7 @@ public final class SOFormulaOpCodeMapper extends WeakBase
implements com.sun.star.sheet.XFormulaOpCodeMapper, XServiceInfo implements com.sun.star.sheet.XFormulaOpCodeMapper, XServiceInfo
{ {
private static final String __serviceName = "com.sun.star.report.pentaho.SOFormulaOpCodeMapper"; private static final String __serviceName = "org.libreoffice.report.pentaho.SOFormulaOpCodeMapper";
private final SOFormulaParser parser; private final SOFormulaParser parser;
// attributes // attributes
final private int m_OpCodeExternal = 0; final private int m_OpCodeExternal = 0;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho; package org.libreoffice.report.pentaho;
import com.sun.star.lang.XServiceInfo; import com.sun.star.lang.XServiceInfo;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho; package org.libreoffice.report.pentaho;
import com.sun.star.container.NoSuchElementException; import com.sun.star.container.NoSuchElementException;
import com.sun.star.lang.XServiceInfo; import com.sun.star.lang.XServiceInfo;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho; package org.libreoffice.report.pentaho;
import com.sun.star.beans.NamedValue; import com.sun.star.beans.NamedValue;
import com.sun.star.beans.PropertyVetoException; import com.sun.star.beans.PropertyVetoException;
@@ -38,16 +38,16 @@ import com.sun.star.registry.InvalidRegistryException;
import com.sun.star.registry.InvalidValueException; import com.sun.star.registry.InvalidValueException;
import com.sun.star.registry.XRegistryKey; import com.sun.star.registry.XRegistryKey;
import com.sun.star.registry.XSimpleRegistry; import com.sun.star.registry.XSimpleRegistry;
import com.sun.star.report.DataSourceFactory; import org.libreoffice.report.DataSourceFactory;
import com.sun.star.report.JobProperties; import org.libreoffice.report.JobProperties;
import com.sun.star.report.ReportEngineParameterNames; import org.libreoffice.report.ReportEngineParameterNames;
import com.sun.star.report.ReportExecutionException; import org.libreoffice.report.ReportExecutionException;
import com.sun.star.report.ReportJob; import org.libreoffice.report.ReportJob;
import com.sun.star.report.ReportJobDefinition; import org.libreoffice.report.ReportJobDefinition;
import com.sun.star.report.ReportJobFactory; import org.libreoffice.report.ReportJobFactory;
import com.sun.star.report.SDBCReportDataFactory; import org.libreoffice.report.SDBCReportDataFactory;
import com.sun.star.report.SOImageService; import org.libreoffice.report.SOImageService;
import com.sun.star.report.StorageRepository; import org.libreoffice.report.StorageRepository;
import com.sun.star.report.XReportDefinition; import com.sun.star.report.XReportDefinition;
import com.sun.star.sdb.XDocumentDataSource; import com.sun.star.sdb.XDocumentDataSource;
import com.sun.star.sdbc.XConnection; import com.sun.star.sdbc.XConnection;
@@ -84,7 +84,7 @@ public class SOReportJobFactory
* The service name, that must be used to get an instance of this service. * The service name, that must be used to get an instance of this service.
*/ */
private static final String __serviceName = private static final String __serviceName =
"com.sun.star.report.pentaho.SOReportJobFactory"; "org.libreoffice.report.pentaho.SOReportJobFactory";
private final PropertySetMixin m_prophlp; private final PropertySetMixin m_prophlp;
/** /**
* The initial component contextr, that gives access to the service manager, supported singletons, ... It's * The initial component contextr, that gives access to the service manager, supported singletons, ... It's

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho; package org.libreoffice.report.pentaho;
import com.sun.star.lib.uno.helper.PropertySetMixin; import com.sun.star.lib.uno.helper.PropertySetMixin;
import com.sun.star.lib.uno.helper.WeakBase; import com.sun.star.lib.uno.helper.WeakBase;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho; package org.libreoffice.report.pentaho;
import com.sun.star.lib.uno.helper.PropertySetMixin; import com.sun.star.lib.uno.helper.PropertySetMixin;
import com.sun.star.lib.uno.helper.WeakBase; import com.sun.star.lib.uno.helper.WeakBase;

View File

@@ -15,9 +15,9 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho; package org.libreoffice.report.pentaho;
import com.sun.star.report.DataSource; import org.libreoffice.report.DataSource;
import org.jfree.report.DataSourceException; import org.jfree.report.DataSourceException;
import org.jfree.report.ReportData; import org.jfree.report.ReportData;
@@ -30,7 +30,7 @@ public class StarReportData implements ReportData
private final int rowCount; private final int rowCount;
public StarReportData(final DataSource dataSource) public StarReportData(final DataSource dataSource)
throws com.sun.star.report.DataSourceException throws org.libreoffice.report.DataSourceException
{ {
if (dataSource == null) if (dataSource == null)
{ {
@@ -52,7 +52,7 @@ public class StarReportData implements ReportData
} }
return ret; return ret;
} }
catch (com.sun.star.report.DataSourceException e) catch (org.libreoffice.report.DataSourceException e)
{ {
throw new DataSourceException("Failed to move cursor", e); throw new DataSourceException("Failed to move cursor", e);
} }
@@ -65,7 +65,7 @@ public class StarReportData implements ReportData
{ {
dataSource.close(); dataSource.close();
} }
catch (com.sun.star.report.DataSourceException e) catch (org.libreoffice.report.DataSourceException e)
{ {
throw new DataSourceException("Failed to close datasource", e); throw new DataSourceException("Failed to close datasource", e);
} }
@@ -102,7 +102,7 @@ public class StarReportData implements ReportData
} }
return false; return false;
} }
catch (com.sun.star.report.DataSourceException e) catch (org.libreoffice.report.DataSourceException e)
{ {
throw new DataSourceException("Failed to move cursor", e); throw new DataSourceException("Failed to move cursor", e);
} }
@@ -120,7 +120,7 @@ public class StarReportData implements ReportData
{ {
return dataSource.getObject(column + 1); return dataSource.getObject(column + 1);
} }
catch (com.sun.star.report.DataSourceException e) catch (org.libreoffice.report.DataSourceException e)
{ {
throw new DataSourceException("Failed to query column.", e); throw new DataSourceException("Failed to query column.", e);
} }
@@ -133,7 +133,7 @@ public class StarReportData implements ReportData
{ {
return dataSource.getColumnCount(); return dataSource.getColumnCount();
} }
catch (com.sun.star.report.DataSourceException e) catch (org.libreoffice.report.DataSourceException e)
{ {
throw new DataSourceException("Failed to query column count.", e); throw new DataSourceException("Failed to query column count.", e);
} }
@@ -146,7 +146,7 @@ public class StarReportData implements ReportData
{ {
return dataSource.getColumnName(column + 1); return dataSource.getColumnName(column + 1);
} }
catch (com.sun.star.report.DataSourceException e) catch (org.libreoffice.report.DataSourceException e)
{ {
throw new DataSourceException("Failed to query column name.", e); throw new DataSourceException("Failed to query column name.", e);
} }

View File

@@ -15,10 +15,10 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho; package org.libreoffice.report.pentaho;
import com.sun.star.report.DataSourceException; import org.libreoffice.report.DataSourceException;
import com.sun.star.report.DataSourceFactory; import org.libreoffice.report.DataSourceFactory;
import java.util.HashMap; import java.util.HashMap;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho; package org.libreoffice.report.pentaho;
import org.pentaho.reporting.libraries.base.boot.AbstractModule; import org.pentaho.reporting.libraries.base.boot.AbstractModule;
import org.pentaho.reporting.libraries.base.boot.ModuleInitializeException; import org.pentaho.reporting.libraries.base.boot.ModuleInitializeException;

View File

@@ -0,0 +1,147 @@
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This file incorporates work covered by the following license notice:
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed
# with this work for additional information regarding copyright
# ownership. The ASF licenses this file to you under the Apache
# License, Version 2.0 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
#
# x-no-translate
##
# Do not modify the following lines. They connect this module to the central
# parser registry.
org.pentaho.reporting.libraries.resourceloader.factory.modules.org.libreoffice.report.pentaho.model.OfficeDocument.star=org.libreoffice.report.pentaho.parser.StarXmlFactoryModule
org.pentaho.reporting.libraries.resourceloader.factory.modules.org.libreoffice.report.pentaho.model.OfficeStylesCollection.star=org.libreoffice.report.pentaho.parser.StarStyleXmlFactoryModule
org.pentaho.reporting.libraries.resourceloader.factory.modules.org.libreoffice.report.pentaho.styles.StyleMapper.star=org.libreoffice.report.pentaho.styles.StyleMapperXmlFactoryModule
##
# The known namespaces.
#
org.jfree.report.namespaces.star-rpt.Uri=http://openoffice.org/2005/report
org.jfree.report.namespaces.star-rpt.Default-Style=res://org/libreoffice/report/pentaho/star-rpt.css
org.jfree.report.namespaces.star-rpt.Prefix=rpt
org.jfree.report.namespaces.star-rpt.ClassAttr=style-name
org.jfree.report.namespaces.star-office.Uri=http://openoffice.org/2004/office
org.jfree.report.namespaces.star-office.Default-Style=res://org/libreoffice/report/pentaho/star-office.css
org.jfree.report.namespaces.star-office.Prefix=office
org.jfree.report.namespaces.star-office.ClassAttr=style-name
org.jfree.report.namespaces.oasis-style.Uri=urn:oasis:names:tc:opendocument:xmlns:style:1.0
org.jfree.report.namespaces.oasis-style.Default-Style=res://org/libreoffice/report/pentaho/oasis-style.css
org.jfree.report.namespaces.oasis-style.Prefix=style
org.jfree.report.namespaces.oasis-table.Uri=urn:oasis:names:tc:opendocument:xmlns:table:1.0
org.jfree.report.namespaces.oasis-table.Default-Style=res://org/libreoffice/report/pentaho/oasis-table.css
org.jfree.report.namespaces.oasis-table.Prefix=table
org.jfree.report.namespaces.oasis-table.ClassAttr=style-name
org.jfree.report.namespaces.oasis-draw.Uri=urn:oasis:names:tc:opendocument:xmlns:drawing:1.0
org.jfree.report.namespaces.oasis-draw.Default-Style=res://org/libreoffice/report/pentaho/oasis-draw.css
org.jfree.report.namespaces.oasis-draw.Prefix=draw
org.jfree.report.namespaces.oasis-draw.ClassAttr=style-name
org.jfree.report.namespaces.oasis-chart.Uri=urn:oasis:names:tc:opendocument:xmlns:chart:1.0
org.jfree.report.namespaces.oasis-chart.Default-Style=res://org/libreoffice/report/pentaho/oasis-chart.css
org.jfree.report.namespaces.oasis-chart.Prefix=chart
org.jfree.report.namespaces.oasis-chart.ClassAttr=style-name
org.jfree.report.namespaces.oasis-text.Uri=urn:oasis:names:tc:opendocument:xmlns:text:1.0
org.jfree.report.namespaces.oasis-text.Default-Style=res://org/libreoffice/report/pentaho/oasis-text.css
org.jfree.report.namespaces.oasis-text.Prefix=text
org.jfree.report.namespaces.oasis-text.ClassAttr=style-name
org.jfree.report.namespaces.oasis-number.Uri=urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0
org.jfree.report.namespaces.oasis-number.Default-Style=res://org/libreoffice/report/pentaho/oasis-number.css
org.jfree.report.namespaces.oasis-number.Prefix=number
org.jfree.report.namespaces.oasis-number.ClassAttr=style-name
org.jfree.report.namespaces.oasis-form.Uri=urn:oasis:names:tc:opendocument:xmlns:form:1.0
org.jfree.report.namespaces.oasis-form.Default-Style=res://org/libreoffice/report/pentaho/oasis-form.css
org.jfree.report.namespaces.oasis-form.Prefix=form
#
# This defines a subset of the real XSL-FO standard.
org.jfree.report.namespaces.oasis-compat-fo.Uri=urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0
org.jfree.report.namespaces.oasis-compat-fo.Default-Style=res://org/libreoffice/report/pentaho/xsl-fo.css
org.jfree.report.namespaces.oasis-compat-fo.Prefix=fo
#
# This defines a subset of the real XSL-FO standard.
org.jfree.report.namespaces.oasis-compat-svg.Uri=urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0
org.jfree.report.namespaces.oasis-compat-svg.Default-Style=res://org/libreoffice/report/pentaho/svg.css
org.jfree.report.namespaces.oasis-compat-svg.Prefix=svg
#
# This defines a subset of the real XSL-FO standard.
org.jfree.report.namespaces.oasis-compat-smil.Uri=urn:oasis:names:tc:opendocument:xmlns:smil-compatible:1.0
org.jfree.report.namespaces.oasis-compat-smil.Default-Style=res://org/libreoffice/report/pentaho/smil.css
org.jfree.report.namespaces.oasis-compat-smil.Prefix=svg
org.jfree.report.namespaces.xsl-fo.Uri=http://www.w3.org/1999/XSL/Format
org.jfree.report.namespaces.xsl-fo.Default-Style=res://org/libreoffice/report/pentaho/xsl-fo.css
org.jfree.report.namespaces.xsl-fo.Prefix=fo
org.jfree.report.namespaces.svg.Uri=http://www.w3.org/2000/svg
org.jfree.report.namespaces.svg.Default-Style=res://org/libreoffice/report/pentaho/svg.css
org.jfree.report.namespaces.svg.Prefix=svg
org.jfree.report.namespaces.svg.ClassAttr=class
org.jfree.report.namespaces.svg.StyleAttr=style
org.jfree.report.namespaces.xml-xlink.Uri=http://www.w3.org/1999/xlink
#org.jfree.report.namespaces.xml-xlink.Default-Style=res://org/libreoffice/report/pentaho/xml-xlink.css
org.jfree.report.namespaces.xml-xlink.Prefix=xlink
#
# Tag-definition for the XML-writer.
# Prefix is 'org.libreoffice.report.pentaho.output.'
#
# Declare the namespaces (this is independent of the ones defined above ..)
# <prefix>"namespace."<ns-prefix>=<ns-uri>
org.libreoffice.report.pentaho.output.namespace.oasis-text=urn:oasis:names:tc:opendocument:xmlns:text:1.0
org.libreoffice.report.pentaho.output.default.oasis-text=deny
org.libreoffice.report.pentaho.output.namespace.oasis-config=urn:oasis:names:tc:opendocument:xmlns:config:1.0
org.libreoffice.report.pentaho.output.default.oasis-config=allow
#
# Next define the tags for which we want to customize the indent-behaviour
org.libreoffice.report.pentaho.output.tag.oasis-text.p=deny
org.libreoffice.report.pentaho.output.tag.oasis-text.section=allow
org.libreoffice.report.pentaho.output.tag.oasis-text.variable-decls=allow
org.libreoffice.report.pentaho.output.tag.oasis-text.variable-decl=allow
org.libreoffice.report.pentaho.output.tag.oasis-config.config-item=deny
org.libreoffice.report.pentaho.output.namespace.oasis-data=urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0
org.libreoffice.report.pentaho.output.default.oasis-data=allow
org.libreoffice.report.pentaho.output.tag.oasis-data.text=deny
org.libreoffice.report.pentaho.output.tag.oasis-data.currency-symbol=deny
org.libreoffice.report.pentaho.output.tag.oasis-data.embedded-text=deny
org.libreoffice.report.pentaho.output.namespace.oasis-draw=urn:oasis:names:tc:opendocument:xmlns:drawing:1.0
org.libreoffice.report.pentaho.output.default.oasis-draw=deny
org.jfree.report.flow.structure.org.libreoffice.report.pentaho.model.FixedTextElement=org.libreoffice.report.pentaho.layoutprocessor.FixedTextLayoutController
org.jfree.report.flow.structure.org.libreoffice.report.pentaho.model.FormattedTextElement=org.libreoffice.report.pentaho.layoutprocessor.FormattedTextLayoutController
org.jfree.report.flow.structure.org.libreoffice.report.pentaho.model.ObjectOleElement=org.libreoffice.report.pentaho.layoutprocessor.ObjectOleLayoutController
org.jfree.report.flow.structure.org.libreoffice.report.pentaho.model.ImageElement=org.libreoffice.report.pentaho.layoutprocessor.ImageElementLayoutController
org.jfree.report.flow.structure.org.libreoffice.report.pentaho.model.TableCellElement=org.libreoffice.report.pentaho.layoutprocessor.TableCellLayoutController
org.jfree.report.flow.structure.org.libreoffice.report.pentaho.model.OfficeReport=org.libreoffice.report.pentaho.layoutprocessor.OfficeReportLayoutController
org.jfree.report.flow.structure.org.libreoffice.report.pentaho.model.OfficeGroup=org.libreoffice.report.pentaho.layoutprocessor.OfficeGroupLayoutController
org.jfree.report.flow.structure.org.libreoffice.report.pentaho.model.OfficeGroupSection=org.libreoffice.report.pentaho.layoutprocessor.OfficeGroupSectionLayoutController
org.jfree.report.flow.structure.org.libreoffice.report.pentaho.model.VariablesDeclarationSection=org.libreoffice.report.pentaho.layoutprocessor.VariablesDeclarationLayoutController
org.jfree.report.flow.structure.org.libreoffice.report.pentaho.model.OfficeDetailSection=org.libreoffice.report.pentaho.layoutprocessor.OfficeDetailLayoutController
org.jfree.report.flow.structure.org.libreoffice.report.pentaho.model.OfficeTableSection=org.libreoffice.report.pentaho.layoutprocessor.OfficeTableLayoutController
org.jfree.report.flow.structure.org.libreoffice.report.pentaho.model.OfficeGroupInstanceSection=org.libreoffice.report.pentaho.layoutprocessor.OfficeGroupInstanceSectionLayoutController

View File

@@ -15,10 +15,10 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.expressions; package org.libreoffice.report.pentaho.expressions;
import com.sun.star.report.DataRow; import org.libreoffice.report.DataRow;
import com.sun.star.report.ReportExpression; import org.libreoffice.report.ReportExpression;
public class SumExpression implements ReportExpression public class SumExpression implements ReportExpression
{ {

View File

@@ -15,9 +15,9 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.expressions; package org.libreoffice.report.pentaho.expressions;
import com.sun.star.report.ReportExpressionMetaData; import org.libreoffice.report.ReportExpressionMetaData;
import java.util.Locale; import java.util.Locale;

View File

@@ -16,10 +16,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import com.sun.star.report.pentaho.model.OfficeGroupSection; import org.libreoffice.report.pentaho.model.OfficeGroupSection;
import com.sun.star.report.pentaho.model.ReportElement; import org.libreoffice.report.pentaho.model.ReportElement;
import org.jfree.report.DataFlags; import org.jfree.report.DataFlags;
import org.jfree.report.DataRow; import org.jfree.report.DataRow;

View File

@@ -16,9 +16,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import com.sun.star.report.pentaho.model.FixedTextElement; import org.libreoffice.report.pentaho.model.FixedTextElement;
import org.jfree.report.DataSourceException; import org.jfree.report.DataSourceException;
import org.jfree.report.ReportDataFactoryException; import org.jfree.report.ReportDataFactoryException;

View File

@@ -16,13 +16,13 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import com.sun.star.report.OfficeToken; import org.libreoffice.report.OfficeToken;
import com.sun.star.report.pentaho.OfficeNamespaces; import org.libreoffice.report.pentaho.OfficeNamespaces;
import com.sun.star.report.pentaho.model.FormattedTextElement; import org.libreoffice.report.pentaho.model.FormattedTextElement;
import com.sun.star.report.pentaho.model.OfficeGroupSection; import org.libreoffice.report.pentaho.model.OfficeGroupSection;
import com.sun.star.report.pentaho.model.ReportElement; import org.libreoffice.report.pentaho.model.ReportElement;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.sql.Time; import java.sql.Time;
@@ -248,7 +248,7 @@ public class FormatValueUtility
else if (ref instanceof TableCellLayoutController) else if (ref instanceof TableCellLayoutController)
isValueChanged=((TableCellLayoutController)ref).isValueChanged(); isValueChanged=((TableCellLayoutController)ref).isValueChanged();
else else
throw new AssertionError("com.sun.star.report.pentaho.layoutprocessor.FormatValueUtility.shouldPrint expects an implementor of isValueChanged as first argument"); throw new AssertionError("org.libreoffice.report.pentaho.layoutprocessor.FormatValueUtility.shouldPrint expects an implementor of isValueChanged as first argument");
// Tests we have to perform: // Tests we have to perform:
// 1. If repeated values are supposed to be printed, then print. // 1. If repeated values are supposed to be printed, then print.

View File

@@ -16,13 +16,13 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import com.sun.star.report.OfficeToken; import org.libreoffice.report.OfficeToken;
import com.sun.star.report.pentaho.OfficeNamespaces; import org.libreoffice.report.pentaho.OfficeNamespaces;
import com.sun.star.report.pentaho.model.FormattedTextElement; import org.libreoffice.report.pentaho.model.FormattedTextElement;
import com.sun.star.report.pentaho.model.OfficeDocument; import org.libreoffice.report.pentaho.model.OfficeDocument;
import com.sun.star.report.pentaho.model.OfficeStyle; import org.libreoffice.report.pentaho.model.OfficeStyle;
import org.apache.commons.logging.Log; import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory; import org.apache.commons.logging.LogFactory;

View File

@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
/** /**
* Todo: Document me! * Todo: Document me!

View File

@@ -16,11 +16,11 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import com.sun.star.report.OfficeToken; import org.libreoffice.report.OfficeToken;
import com.sun.star.report.pentaho.OfficeNamespaces; import org.libreoffice.report.pentaho.OfficeNamespaces;
import com.sun.star.report.pentaho.model.ImageElement; import org.libreoffice.report.pentaho.model.ImageElement;
import org.apache.commons.logging.Log; import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory; import org.apache.commons.logging.LogFactory;

View File

@@ -16,11 +16,11 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import com.sun.star.report.OfficeToken; import org.libreoffice.report.OfficeToken;
import com.sun.star.report.SDBCReportDataFactory; import org.libreoffice.report.SDBCReportDataFactory;
import com.sun.star.report.pentaho.model.ObjectOleElement; import org.libreoffice.report.pentaho.model.ObjectOleElement;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Iterator; import java.util.Iterator;

View File

@@ -16,9 +16,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import com.sun.star.report.pentaho.model.VariablesDeclarationSection; import org.libreoffice.report.pentaho.model.VariablesDeclarationSection;
import org.jfree.report.DataSourceException; import org.jfree.report.DataSourceException;
import org.jfree.report.ReportData; import org.jfree.report.ReportData;

View File

@@ -16,10 +16,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import com.sun.star.report.pentaho.model.OfficeGroupSection; import org.libreoffice.report.pentaho.model.OfficeGroupSection;
import com.sun.star.report.pentaho.model.VariablesDeclarationSection; import org.libreoffice.report.pentaho.model.VariablesDeclarationSection;
import org.jfree.layouting.util.AttributeMap; import org.jfree.layouting.util.AttributeMap;
import org.jfree.report.DataSourceException; import org.jfree.report.DataSourceException;

View File

@@ -16,10 +16,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import com.sun.star.report.pentaho.model.OfficeGroup; import org.libreoffice.report.pentaho.model.OfficeGroup;
import com.sun.star.report.pentaho.model.OfficeGroupSection; import org.libreoffice.report.pentaho.model.OfficeGroupSection;
import org.jfree.layouting.util.AttributeMap; import org.jfree.layouting.util.AttributeMap;
import org.jfree.report.DataSourceException; import org.jfree.report.DataSourceException;

View File

@@ -15,10 +15,10 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import com.sun.star.report.OfficeToken; import org.libreoffice.report.OfficeToken;
import com.sun.star.report.pentaho.model.OfficeGroupSection; import org.libreoffice.report.pentaho.model.OfficeGroupSection;
import org.jfree.layouting.util.AttributeMap; import org.jfree.layouting.util.AttributeMap;
import org.jfree.report.DataSourceException; import org.jfree.report.DataSourceException;

View File

@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import org.jfree.layouting.util.AttributeMap; import org.jfree.layouting.util.AttributeMap;
import org.jfree.report.DataSourceException; import org.jfree.report.DataSourceException;

View File

@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import org.jfree.report.flow.layoutprocessor.LayoutController; import org.jfree.report.flow.layoutprocessor.LayoutController;

View File

@@ -15,10 +15,10 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import com.sun.star.report.pentaho.model.OfficeReport; import org.libreoffice.report.pentaho.model.OfficeReport;
import com.sun.star.report.pentaho.model.VariablesDeclarationSection; import org.libreoffice.report.pentaho.model.VariablesDeclarationSection;
import org.jfree.report.DataSourceException; import org.jfree.report.DataSourceException;
import org.jfree.report.ReportDataFactoryException; import org.jfree.report.ReportDataFactoryException;

View File

@@ -15,10 +15,10 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import com.sun.star.report.OfficeToken; import org.libreoffice.report.OfficeToken;
import com.sun.star.report.pentaho.OfficeNamespaces; import org.libreoffice.report.pentaho.OfficeNamespaces;
import org.jfree.layouting.util.AttributeMap; import org.jfree.layouting.util.AttributeMap;
import org.jfree.report.DataSourceException; import org.jfree.report.DataSourceException;

View File

@@ -15,11 +15,11 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import com.sun.star.report.pentaho.OfficeNamespaces; import org.libreoffice.report.pentaho.OfficeNamespaces;
import com.sun.star.report.pentaho.model.OfficeGroup; import org.libreoffice.report.pentaho.model.OfficeGroup;
import com.sun.star.report.pentaho.model.OfficeReport; import org.libreoffice.report.pentaho.model.OfficeReport;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;

View File

@@ -15,13 +15,13 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import com.sun.star.report.OfficeToken; import org.libreoffice.report.OfficeToken;
import com.sun.star.report.pentaho.OfficeNamespaces; import org.libreoffice.report.pentaho.OfficeNamespaces;
import com.sun.star.report.pentaho.model.FormatCondition; import org.libreoffice.report.pentaho.model.FormatCondition;
import com.sun.star.report.pentaho.model.FormattedTextElement; import org.libreoffice.report.pentaho.model.FormattedTextElement;
import com.sun.star.report.pentaho.model.ReportElement; import org.libreoffice.report.pentaho.model.ReportElement;
import org.jfree.layouting.util.AttributeMap; import org.jfree.layouting.util.AttributeMap;
import org.jfree.report.DataFlags; import org.jfree.report.DataFlags;

View File

@@ -15,9 +15,9 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import com.sun.star.report.pentaho.model.FormattedTextElement; import org.libreoffice.report.pentaho.model.FormattedTextElement;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;

View File

@@ -15,10 +15,10 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.layoutprocessor; package org.libreoffice.report.pentaho.layoutprocessor;
import com.sun.star.report.pentaho.OfficeNamespaces; import org.libreoffice.report.pentaho.OfficeNamespaces;
import com.sun.star.report.pentaho.model.FormattedTextElement; import org.libreoffice.report.pentaho.model.FormattedTextElement;
import java.text.SimpleDateFormat; import java.text.SimpleDateFormat;

View File

@@ -15,9 +15,9 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.loader; package org.libreoffice.report.pentaho.loader;
import com.sun.star.report.InputRepository; import org.libreoffice.report.InputRepository;
import java.net.URL; import java.net.URL;

View File

@@ -15,9 +15,9 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.loader; package org.libreoffice.report.pentaho.loader;
import com.sun.star.report.InputRepository; import org.libreoffice.report.InputRepository;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.loader; package org.libreoffice.report.pentaho.loader;
import java.io.Serializable; import java.io.Serializable;

View File

@@ -15,9 +15,9 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.model; package org.libreoffice.report.pentaho.model;
import com.sun.star.report.pentaho.OfficeNamespaces; import org.libreoffice.report.pentaho.OfficeNamespaces;
import org.jfree.report.structure.Section; import org.jfree.report.structure.Section;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.model; package org.libreoffice.report.pentaho.model;
import org.jfree.report.structure.Section; import org.jfree.report.structure.Section;

View File

@@ -15,9 +15,9 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.model; package org.libreoffice.report.pentaho.model;
import com.sun.star.report.pentaho.OfficeNamespaces; import org.libreoffice.report.pentaho.OfficeNamespaces;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;

View File

@@ -15,9 +15,9 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.model; package org.libreoffice.report.pentaho.model;
import com.sun.star.report.pentaho.OfficeNamespaces; import org.libreoffice.report.pentaho.OfficeNamespaces;
import org.jfree.report.structure.Section; import org.jfree.report.structure.Section;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.model; package org.libreoffice.report.pentaho.model;
import org.jfree.report.expressions.FormulaExpression; import org.jfree.report.expressions.FormulaExpression;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.model; package org.libreoffice.report.pentaho.model;
import org.jfree.report.expressions.FormulaExpression; import org.jfree.report.expressions.FormulaExpression;

View File

@@ -15,10 +15,10 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.model; package org.libreoffice.report.pentaho.model;
import com.sun.star.report.OfficeToken; import org.libreoffice.report.OfficeToken;
import com.sun.star.report.pentaho.OfficeNamespaces; import org.libreoffice.report.pentaho.OfficeNamespaces;
import org.jfree.report.expressions.FormulaExpression; import org.jfree.report.expressions.FormulaExpression;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.model; package org.libreoffice.report.pentaho.model;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;

View File

@@ -15,7 +15,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.model; package org.libreoffice.report.pentaho.model;
import org.jfree.report.structure.DetailSection; import org.jfree.report.structure.DetailSection;

View File

@@ -15,9 +15,9 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package com.sun.star.report.pentaho.model; package org.libreoffice.report.pentaho.model;
import com.sun.star.report.JobProperties; import org.libreoffice.report.JobProperties;
import org.jfree.report.JFreeReport; import org.jfree.report.JFreeReport;

Some files were not shown because too many files have changed in this diff Show More