diff --git a/src/JasperStarter/CHANGES b/src/JasperStarter/CHANGES index e3147b2..0d263a6 100644 --- a/src/JasperStarter/CHANGES +++ b/src/JasperStarter/CHANGES @@ -2,6 +2,109 @@ JasperStarter - Running JasperReports from command line ======================================================== +Release notes - JasperStarter - Version 3.5.0 +--------------------------------------------- + +** Bug + * [JAS-134] - "InterruptedException" should not be ignored in App.java + * [JAS-135] - comparisons between unrelated types in Config.java + +** New Feature + * [JAS-131] - Jasperstarter does not provide a way to use the query string saved in the report itself + +** Task + * [JAS-133] - Release Pipeline takes longer than before + * [JAS-136] - Throwable.printStackTrace(...) should not be called in Report.java setLookAndFeel() + * [JAS-137] - Do not use a bitwise operator with a Boolean-like operand in ParameterPanel.java + * [JAS-138] - Do not use a bitwise operator with a Boolean-like operand in ParameterPrompt.java + + +Release notes - JasperStarter - Version 3.4.1 +--------------------------------------------- + +** Bug + * [JAS-132] - Security alert on org.springframework:spring-core + Updated springframework to 4.3.21 + + CVE-2016-5007 - moderate severity - Vulnerable versions: < 4.3.1 + CVE-2018-1275 - high severity - Vulnerable versions: < 4.3.16 + CVE-2018-1272 - moderate severity - Vulnerable versions: < 4.3.15 + CVE-2018-1271 - moderate severity - Vulnerable versions: < 4.3.15 + CVE-2018-1270 - high severity - Vulnerable versions: < 4.3.16 + CVE-2018-1257 - moderate severity - Vulnerable versions: < 4.3.17 + + +Release notes - JasperStarter - Version 3.4.0 +--------------------------------------------- + + JasperStarter-3.2.0 silently dropped Java7 support by using the + latest available JasperReports Library. + JasperReports-6.4.0 is the last release which works with Java7 so + JasperStarter-3.1.0 was the latest release supporting Java7. + + Now JasperStarter needs Java8 at a minimum and is manually tested + with OpenJDK-8, OpenJDK-10, OpenJDK-11. Automatic testing is on the + way (see JAS-128). + There will be a special release supporting Java7. + + "Diskless" operation using stdin and stdout for input data and + output is now complete. See ([JAS-97] and [JAS-89]). + + A public API allows direct integration with Python using jpy + ([JAS-125]). + +Known bugs: + * [JAS-120] - JasperReports-6.7.0 Version does not match with + reported version from the jar file in + This is an upstream error which causes JasperStarter to put out + a wrong JasperReports version number of 6.6.0 instead of 6.7.0 + if you call: jasperstarter -V + +** Bug + * [JAS-111] - JRE 1.7 incompatibility - not fixed in the main + release but clarified. + * [JAS-122] - Runtime error if a chart with "chart customizers" is + used + * [JAS-126] - Jasperstarter does not usefully propagate + compilation errors + +** New Feature + * [JAS-97] - Use stdout for the resulting PDF (so we don't have to + write to the hosting server's storage) + * [JAS-125] - Make report fill accessible via API + +** Task + * [JAS-127] - Enable dependency caching in build pipeline + * [JAS-129] - Remove test dependency to font Arial + * [JAS-130] - launch4j-maven-plugin:1.5.2 depends on 32bit + libraries + + +Release notes - JasperStarter - Version 3.3.0 +--------------------------------------------- + +Known bugs: + * [JAS-120] - JasperReports-6.7.0 Version does not match with reported version from the jar file in + This is an upstream error which causes JasperStarter to put out + a wrong JasperReports version number of 6.6.0 instead of 6.7.0 + if you call: jasperstarter -V + +** Bug + * [JAS-116] - SSL error + * [JAS-121] - Container 'Build' exceeded memory limit. + * [JAS-122] - Runtime error if a chart with "chart customizers" is used + +** New Feature + * [JAS-113] - JSONQL data source support + +** Task + * [JAS-102] - Pipeline: enable build artifact upload to download section + * [JAS-119] - Include JasperReports-6.7.0 + +** Improvement + * [JAS-89] - Accept stdin for datafile input + + Release Notes - JasperStarter - Version 3.2.1 --------------------------------------------- diff --git a/src/JasperStarter/README.md b/src/JasperStarter/README.md index 1ca00c3..0c315f0 100644 --- a/src/JasperStarter/README.md +++ b/src/JasperStarter/README.md @@ -9,7 +9,7 @@ The official homepage is [jasperstater.cenote.de][]. It has the following features: - * Run any JasperReport that needs a jdbc, csv, xml, json or empty datasource + * Run any JasperReport that needs a jdbc, csv, xml, json, jsonql or empty datasource * Use with any database for which a jdbc driver is available * Run reports with subreports * Execute reports that need runtime parameters. Any parameter whose class has @@ -29,10 +29,11 @@ It has the following features: * Integrate in non Java applications (for example PHP, Python) * Binary executable on Windows * Includes JasperReports so this is the only tool you need to install + * "Diskless" operation using stdin and stdout for input data and output. Requirements: - * Java 1.6 or higher + * Java 1.8 or higher * A JDBC 2.1 driver for your database @@ -67,6 +68,43 @@ Example with hsql using database type generic: For more information take a look in the docs directory of the distibution archive or read the [Usage][] page online. +### Python Integration using public API + +JasperStarter exposes an API which can be used with [jpy][] to +provide direct access from Python: + + # + # Load the JVM. See the jpy docs for details. + # + import jpyutil + jpyutil.init_jvm(jvm_maxmem='512M', jvm_classpath=['.../jasperstarter.jar']) + # + # Load the Java types needed. + # + import jpy + Arrays = jpy.get_type('java.util.Arrays') + File = jpy.get_type('java.io.File') + Report = jpy.get_type('de.cenote.jasperstarter.Report') + Config = jpy.get_type('de.cenote.jasperstarter.Config') + DsType = jpy.get_type('de.cenote.jasperstarter.types.DsType') + # + # Create the JasperStarter configuration. See Config.java for details. + # + config = Config() + config.setInput('jsonql.jrxml') + config.setOutput('contacts.pdf') + config.setDbType(DsType.json) + config.setDataFile(File('contacts.json')) + config.setJsonQuery('contacts.person') + config.setOutputFormats(Arrays.asList([])) + # + # Run the report. See Report.java for details. + # + instance = Report(config, File(config.getInput())) + instance.fill() + instance.exportPdf() + +See the examples/python directory for a fuller example. ### Release Notes @@ -88,23 +126,26 @@ and create a bug or feature request. If you like the software you can write a [review][] :-) -### Developement +### Development The sourcecode is available at [bitbucket.org/cenote/jasperstarter][], the project website is hosted at [Sourceforge][]. JasperStarter is build with [Maven][]. -On Linux 64 bit the launch4j-maven-plugin may fail. You need the folloing libs in a 32 bit version: +On Linux 64 bit the launch4j-maven-plugin may fail. In this case, may you need the following libs in a 32 bit version: * z1 * ncurses5 * bz2-1.0 -On Ubuntu 14.04 for example use this command: +Install on Ubuntu 14.04 or above: $ sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 +Install on Fedora 27 or above: + + $sudo dnf install ncurses-compat-libs.i686 To get a distribution package run: @@ -187,3 +228,4 @@ limitations under the License. [Usage]:http://jasperstarter.sourceforge.net/usage.html [Issues]:https://cenote-issues.atlassian.net/browse/JAS [Changes]:changes.html +[jpy]:https://github.com/bcdev/jpy \ No newline at end of file diff --git a/src/JasperStarter/bin/jasperstarter.exe b/src/JasperStarter/bin/jasperstarter.exe index 67bee7d..c0bb57f 100755 Binary files a/src/JasperStarter/bin/jasperstarter.exe and b/src/JasperStarter/bin/jasperstarter.exe differ diff --git a/src/JasperStarter/docs/apidocs/allclasses-frame.html b/src/JasperStarter/docs/apidocs/allclasses-frame.html new file mode 100644 index 0000000..8e0e32b --- /dev/null +++ b/src/JasperStarter/docs/apidocs/allclasses-frame.html @@ -0,0 +1,29 @@ + + + + + + +All Classes (JasperStarter 3.5.0 API) + + + + + +

All Classes

+
+ +
+ + diff --git a/src/JasperStarter/docs/apidocs/allclasses-noframe.html b/src/JasperStarter/docs/apidocs/allclasses-noframe.html new file mode 100644 index 0000000..72fd9f2 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/allclasses-noframe.html @@ -0,0 +1,29 @@ + + + + + + +All Classes (JasperStarter 3.5.0 API) + + + + + +

All Classes

+
+ +
+ + diff --git a/src/JasperStarter/docs/apidocs/constant-values.html b/src/JasperStarter/docs/apidocs/constant-values.html new file mode 100644 index 0000000..61a45c1 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/constant-values.html @@ -0,0 +1,393 @@ + + + + + + +Constant Field Values (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Constant Field Values

+

Contents

+ +
+
+ + +

de.cenote.*

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/App.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/App.html new file mode 100644 index 0000000..8a4b183 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/App.html @@ -0,0 +1,313 @@ + + + + + + +App (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
de.cenote.jasperstarter
+

Class App

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/Config.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/Config.html new file mode 100644 index 0000000..509ac16 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/Config.html @@ -0,0 +1,1947 @@ + + + + + + +Config (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
de.cenote.jasperstarter
+

Class Config

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/Db.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/Db.html new file mode 100644 index 0000000..5e6c4b6 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/Db.html @@ -0,0 +1,397 @@ + + + + + + +Db (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
de.cenote.jasperstarter
+

Class Db

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/Report.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/Report.html new file mode 100644 index 0000000..a61f5ba --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/Report.html @@ -0,0 +1,761 @@ + + + + + + +Report (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
de.cenote.jasperstarter
+

Class Report

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/class-use/App.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/class-use/App.html new file mode 100644 index 0000000..5fff766 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/class-use/App.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class de.cenote.jasperstarter.App (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
de.cenote.jasperstarter.App

+
+
No usage of de.cenote.jasperstarter.App
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/class-use/Config.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/class-use/Config.html new file mode 100644 index 0000000..c6ff5a6 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/class-use/Config.html @@ -0,0 +1,213 @@ + + + + + + +Uses of Class de.cenote.jasperstarter.Config (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
de.cenote.jasperstarter.Config

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/class-use/Db.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/class-use/Db.html new file mode 100644 index 0000000..0c8db05 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/class-use/Db.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class de.cenote.jasperstarter.Db (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
de.cenote.jasperstarter.Db

+
+
No usage of de.cenote.jasperstarter.Db
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/class-use/Report.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/class-use/Report.html new file mode 100644 index 0000000..3b3e307 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/class-use/Report.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class de.cenote.jasperstarter.Report (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
de.cenote.jasperstarter.Report

+
+
No usage of de.cenote.jasperstarter.Report
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/package-frame.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/package-frame.html new file mode 100644 index 0000000..f357504 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/package-frame.html @@ -0,0 +1,24 @@ + + + + + + +de.cenote.jasperstarter (JasperStarter 3.5.0 API) + + + + + +

de.cenote.jasperstarter

+
+

Classes

+ +
+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/package-summary.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/package-summary.html new file mode 100644 index 0000000..bde1bf0 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/package-summary.html @@ -0,0 +1,165 @@ + + + + + + +de.cenote.jasperstarter (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package de.cenote.jasperstarter

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/package-tree.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/package-tree.html new file mode 100644 index 0000000..9fb3953 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/package-tree.html @@ -0,0 +1,142 @@ + + + + + + +de.cenote.jasperstarter Class Hierarchy (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package de.cenote.jasperstarter

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/package-use.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/package-use.html new file mode 100644 index 0000000..18308b8 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/package-use.html @@ -0,0 +1,162 @@ + + + + + + +Uses of Package de.cenote.jasperstarter (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
de.cenote.jasperstarter

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/AskFilter.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/AskFilter.html new file mode 100644 index 0000000..c5ee9a4 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/AskFilter.html @@ -0,0 +1,416 @@ + + + + + + +AskFilter (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
de.cenote.jasperstarter.types
+

Enum AskFilter

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/Command.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/Command.html new file mode 100644 index 0000000..f14a41b --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/Command.html @@ -0,0 +1,468 @@ + + + + + + +Command (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
de.cenote.jasperstarter.types
+

Enum Command

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/Dest.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/Dest.html new file mode 100644 index 0000000..7cf5f1a --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/Dest.html @@ -0,0 +1,911 @@ + + + + + + +Dest (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
de.cenote.jasperstarter.types
+

Interface Dest

+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/DsType.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/DsType.html new file mode 100644 index 0000000..274ba91 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/DsType.html @@ -0,0 +1,474 @@ + + + + + + +DsType (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
de.cenote.jasperstarter.types
+

Enum DsType

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/InputType.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/InputType.html new file mode 100644 index 0000000..38ecb7c --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/InputType.html @@ -0,0 +1,362 @@ + + + + + + +InputType (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
de.cenote.jasperstarter.types
+

Enum InputType

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/OutputFormat.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/OutputFormat.html new file mode 100644 index 0000000..f6683df --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/OutputFormat.html @@ -0,0 +1,530 @@ + + + + + + +OutputFormat (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + + +
+
de.cenote.jasperstarter.types
+

Enum OutputFormat

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/AskFilter.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/AskFilter.html new file mode 100644 index 0000000..7714b0f --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/AskFilter.html @@ -0,0 +1,214 @@ + + + + + + +Uses of Class de.cenote.jasperstarter.types.AskFilter (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
de.cenote.jasperstarter.types.AskFilter

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/Command.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/Command.html new file mode 100644 index 0000000..9376ce9 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/Command.html @@ -0,0 +1,181 @@ + + + + + + +Uses of Class de.cenote.jasperstarter.types.Command (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
de.cenote.jasperstarter.types.Command

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/Dest.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/Dest.html new file mode 100644 index 0000000..e7a8ec4 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/Dest.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Interface de.cenote.jasperstarter.types.Dest (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Interface
de.cenote.jasperstarter.types.Dest

+
+
No usage of de.cenote.jasperstarter.types.Dest
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/DsType.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/DsType.html new file mode 100644 index 0000000..bf4aac1 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/DsType.html @@ -0,0 +1,214 @@ + + + + + + +Uses of Class de.cenote.jasperstarter.types.DsType (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
de.cenote.jasperstarter.types.DsType

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/InputType.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/InputType.html new file mode 100644 index 0000000..c1e5e06 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/InputType.html @@ -0,0 +1,175 @@ + + + + + + +Uses of Class de.cenote.jasperstarter.types.InputType (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
de.cenote.jasperstarter.types.InputType

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/OutputFormat.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/OutputFormat.html new file mode 100644 index 0000000..56c05e6 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/class-use/OutputFormat.html @@ -0,0 +1,214 @@ + + + + + + +Uses of Class de.cenote.jasperstarter.types.OutputFormat (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Class
de.cenote.jasperstarter.types.OutputFormat

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/package-frame.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/package-frame.html new file mode 100644 index 0000000..0e559b1 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/package-frame.html @@ -0,0 +1,29 @@ + + + + + + +de.cenote.jasperstarter.types (JasperStarter 3.5.0 API) + + + + + +

de.cenote.jasperstarter.types

+
+

Interfaces

+ +

Enums

+ +
+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/package-summary.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/package-summary.html new file mode 100644 index 0000000..d1dc4b0 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/package-summary.html @@ -0,0 +1,187 @@ + + + + + + +de.cenote.jasperstarter.types (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Package de.cenote.jasperstarter.types

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/package-tree.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/package-tree.html new file mode 100644 index 0000000..de4f1c6 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/package-tree.html @@ -0,0 +1,151 @@ + + + + + + +de.cenote.jasperstarter.types Class Hierarchy (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For Package de.cenote.jasperstarter.types

+Package Hierarchies: + +
+
+

Interface Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/package-use.html b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/package-use.html new file mode 100644 index 0000000..d09a9ed --- /dev/null +++ b/src/JasperStarter/docs/apidocs/de/cenote/jasperstarter/types/package-use.html @@ -0,0 +1,212 @@ + + + + + + +Uses of Package de.cenote.jasperstarter.types (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Uses of Package
de.cenote.jasperstarter.types

+
+
+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/deprecated-list.html b/src/JasperStarter/docs/apidocs/deprecated-list.html new file mode 100644 index 0000000..2eafa24 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/deprecated-list.html @@ -0,0 +1,126 @@ + + + + + + +Deprecated List (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Deprecated API

+

Contents

+
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/help-doc.html b/src/JasperStarter/docs/apidocs/help-doc.html new file mode 100644 index 0000000..6cbc3a7 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/help-doc.html @@ -0,0 +1,231 @@ + + + + + + +API Help (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+ +This help file applies to API documentation generated using the standard doclet.
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/index-all.html b/src/JasperStarter/docs/apidocs/index-all.html new file mode 100644 index 0000000..43fd65e --- /dev/null +++ b/src/JasperStarter/docs/apidocs/index-all.html @@ -0,0 +1,937 @@ + + + + + + +Index (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
A C D E F G H I J L M O P R S V W X  + + +

A

+
+
App - Class in de.cenote.jasperstarter
+
+
App class.
+
+
App() - Constructor for class de.cenote.jasperstarter.App
+
 
+
ASK - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant ASK="ask"
+
+
AskFilter - Enum in de.cenote.jasperstarter.types
+
+
AskFilter class.
+
+
+ + + +

C

+
+
Command - Enum in de.cenote.jasperstarter.types
+
+
Command class.
+
+
COMMAND - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant COMMAND="command"
+
+
compileToFile() - Method in class de.cenote.jasperstarter.Report
+
+
Emit a .jasper compiled version of the report definition .jrxml file.
+
+
Config - Class in de.cenote.jasperstarter
+
+
This POJO is intended to contain all command line parameters and other + configuration values.
+
+
Config() - Constructor for class de.cenote.jasperstarter.Config
+
+
Constructor for Config.
+
+
COPIES - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant COPIES="copies"
+
+
CSV_CHARSET - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant CSV_CHARSET="csv-charset"
+
+
CSV_COLUMNS - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant CSV_COLUMNS="csv-columns"
+
+
CSV_FIELD_DEL - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant CSV_FIELD_DEL="csv-field-del"
+
+
CSV_FIRST_ROW - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant CSV_FIRST_ROW="csv-first-row"
+
+
CSV_RECORD_DEL - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant CSV_RECORD_DEL="csv-record-del"
+
+
+ + + +

D

+
+
DATA_FILE - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant DATA_FILE="data-file"
+
+
Db - Class in de.cenote.jasperstarter
+
+
Db class.
+
+
Db() - Constructor for class de.cenote.jasperstarter.Db
+
+
Constructor for Db.
+
+
DB_DRIVER - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant DB_DRIVER="db-driver"
+
+
DB_HOST - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant DB_HOST="db-host"
+
+
DB_NAME - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant DB_NAME="db-name"
+
+
DB_PASSWD - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant DB_PASSWD="db-passwd"
+
+
DB_PORT - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant DB_PORT="db-port"
+
+
DB_SID - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant DB_SID="db-sid"
+
+
DB_URL - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant DB_URL="db-url"
+
+
DB_USER - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant DB_USER="db-user"
+
+
de.cenote.jasperstarter - package de.cenote.jasperstarter
+
 
+
de.cenote.jasperstarter.types - package de.cenote.jasperstarter.types
+
 
+
DEBUG - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant DEBUG="debug"
+
+
Dest - Interface in de.cenote.jasperstarter.types
+
+
Dest interface.
+
+
DS_TYPE - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant DS_TYPE="db-type"
+
+
DsType - Enum in de.cenote.jasperstarter.types
+
+
Types of Datasources
+
+
+ + + +

E

+
+
exportCsv() - Method in class de.cenote.jasperstarter.Report
+
+
exportCsv.
+
+
exportCsvMeta() - Method in class de.cenote.jasperstarter.Report
+
+
exportCsvMeta.
+
+
exportDocx() - Method in class de.cenote.jasperstarter.Report
+
+
exportDocx.
+
+
exportHtml() - Method in class de.cenote.jasperstarter.Report
+
+
exportHtml.
+
+
exportJrprint() - Method in class de.cenote.jasperstarter.Report
+
+
exportJrprint.
+
+
exportOds() - Method in class de.cenote.jasperstarter.Report
+
+
exportOds.
+
+
exportOdt() - Method in class de.cenote.jasperstarter.Report
+
+
exportOdt.
+
+
exportPdf() - Method in class de.cenote.jasperstarter.Report
+
+
exportPdf.
+
+
exportPptx() - Method in class de.cenote.jasperstarter.Report
+
+
exportPptx.
+
+
exportRtf() - Method in class de.cenote.jasperstarter.Report
+
+
exportRtf.
+
+
exportXhtml() - Method in class de.cenote.jasperstarter.Report
+
+
exportXhtml.
+
+
exportXls() - Method in class de.cenote.jasperstarter.Report
+
+
exportXls.
+
+
exportXlsMeta() - Method in class de.cenote.jasperstarter.Report
+
+
exportXlsMeta.
+
+
exportXlsx() - Method in class de.cenote.jasperstarter.Report
+
+
exportXlsx.
+
+
exportXml() - Method in class de.cenote.jasperstarter.Report
+
+
exportXml.
+
+
+ + + +

F

+
+
fill() - Method in class de.cenote.jasperstarter.Report
+
+
Process report content into internal form.
+
+
+ + + +

G

+
+
getAskFilter() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field askFilter.
+
+
getCommand() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field command.
+
+
getCommand(String) - Static method in enum de.cenote.jasperstarter.types.Command
+
+
getCommand.
+
+
getConnection(Config) - Method in class de.cenote.jasperstarter.Db
+
+
getConnection.
+
+
getCopies() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field copies.
+
+
getCsvCharset() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field csvCharset.
+
+
getCsvColumns() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field csvColumns.
+
+
getCsvDataSource(Config) - Method in class de.cenote.jasperstarter.Db
+
+
getCsvDataSource.
+
+
getCsvFieldDel() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field csvFieldDel.
+
+
getCsvFirstRow() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field csvFirstRow.
+
+
getCsvRecordDel() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field csvRecordDel.
+
+
getDataFile() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field dataFile.
+
+
getDataFileInputStream() - Method in class de.cenote.jasperstarter.Config
+
+
Get InputStream corresponding to the configured dataFile.
+
+
getDataFileName() - Method in class de.cenote.jasperstarter.Config
+
+
Get name of the configured dataFile.
+
+
getDbDriver() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field dbDriver.
+
+
getDbHost() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field dbHost.
+
+
getDbName() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field dbName.
+
+
getDbPasswd() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field dbPasswd.
+
+
getDbPort() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field dbPort.
+
+
getDbSid() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field dbSid.
+
+
getDbType() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field dbType.
+
+
getDbUrl() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field dbUrl.
+
+
getDbUser() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field dbUser.
+
+
getDriver() - Method in enum de.cenote.jasperstarter.types.DsType
+
+
Getter for the field driver.
+
+
getInput() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field input.
+
+
getJdbcDir() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field jdbcDir.
+
+
getJsonDataSource(Config) - Method in class de.cenote.jasperstarter.Db
+
+
getJsonDataSource.
+
+
getJsonQLDataSource(Config) - Method in class de.cenote.jasperstarter.Db
+
+
getJsonQLDataSource.
+
+
getJsonQLQuery() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field jsonQLQuery.
+
+
getJsonQuery() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field jsonQuery.
+
+
getLocale() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field locale.
+
+
getMainDatasetQuery() - Method in class de.cenote.jasperstarter.Report
+
+
For JSON, JSONQL and any other data types that need a query to be provided, + an obvious default is to use the one written into the report, since that is + likely what the report designer debugged/intended to be used.
+
+
getOutCharset() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field outCharset.
+
+
getOutFieldDel() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field outFieldDel.
+
+
getOutput() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field output.
+
+
getOutputFormats() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field outputFormats.
+
+
getParams() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field params.
+
+
getPort() - Method in enum de.cenote.jasperstarter.types.DsType
+
+
Getter for the field port.
+
+
getPrinterName() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field printerName.
+
+
getReportName() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field reportName.
+
+
getReportParameters() - Method in class de.cenote.jasperstarter.Report
+
+
getReportParameters.
+
+
getResource() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field resource.
+
+
getVersionString() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field versionString.
+
+
getXmlDataSource(Config) - Method in class de.cenote.jasperstarter.Db
+
+
getXmlDataSource.
+
+
getXmlXpath() - Method in class de.cenote.jasperstarter.Config
+
+
Getter for the field xmlXpath.
+
+
+ + + +

H

+
+
hasAskFilter() - Method in class de.cenote.jasperstarter.Config
+
+
hasAskFilter.
+
+
hasCopies() - Method in class de.cenote.jasperstarter.Config
+
+
hasCopies.
+
+
hasDbType() - Method in class de.cenote.jasperstarter.Config
+
+
hasDbType.
+
+
hasJdbcDir() - Method in class de.cenote.jasperstarter.Config
+
+
hasJdbcDir.
+
+
hasLocale() - Method in class de.cenote.jasperstarter.Config
+
+
hasLocale.
+
+
hasOutput() - Method in class de.cenote.jasperstarter.Config
+
+
hasOutput.
+
+
hasParams() - Method in class de.cenote.jasperstarter.Config
+
+
hasParams.
+
+
hasPrinterName() - Method in class de.cenote.jasperstarter.Config
+
+
hasPrinterName.
+
+
hasReportName() - Method in class de.cenote.jasperstarter.Config
+
+
hasReportName.
+
+
hasResource() - Method in class de.cenote.jasperstarter.Config
+
+
hasResource.
+
+
+ + + +

I

+
+
INPUT - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant INPUT="input"
+
+
InputType - Enum in de.cenote.jasperstarter.types
+
+
InputType class.
+
+
isVerbose() - Method in class de.cenote.jasperstarter.Config
+
+
isVerbose.
+
+
isWithPrintDialog() - Method in class de.cenote.jasperstarter.Config
+
+
isWithPrintDialog.
+
+
isWriteJasper() - Method in class de.cenote.jasperstarter.Config
+
+
isWriteJasper.
+
+
+ + + +

J

+
+
JDBC_DIR - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant JDBC_DIR="jdbc-dir"
+
+
JSON_QUERY - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant JSON_QUERY="json-query"
+
+
JSONQL_QUERY - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant JSONQL_QUERY="jsonql-query"
+
+
+ + + +

L

+
+
listReportParams(Config, File) - Static method in class de.cenote.jasperstarter.App
+
+
listReportParams.
+
+
LOCALE - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant LOCALE="locale"
+
+
+ + + +

M

+
+
main(String[]) - Static method in class de.cenote.jasperstarter.App
+
+
main.
+
+
+ + + +

O

+
+
OUT_CHARSET - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant OUT_CHARSET="out-charset"
+
+
OUT_FIELD_DEL - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant OUT_FIELD_DEL="out-field-del"
+
+
OUTPUT - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant OUTPUT="output"
+
+
OUTPUT_FORMATS - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant OUTPUT_FORMATS="output-formats"
+
+
OutputFormat - Enum in de.cenote.jasperstarter.types
+
+
OutputFormat class.
+
+
+ + + +

P

+
+
PARAMS - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant PARAMS="params"
+
+
print() - Method in class de.cenote.jasperstarter.Report
+
+
print.
+
+
PRINTER_NAME - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant PRINTER_NAME="printer-name"
+
+
+ + + +

R

+
+
Report - Class in de.cenote.jasperstarter
+
+
Report class.
+
+
Report(Config, File) - Constructor for class de.cenote.jasperstarter.Report
+
+
Constructor.
+
+
REPORT_NAME - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant REPORT_NAME="set-report-name"
+
+
RESOURCE - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant RESOURCE="resource"
+
+
+ + + +

S

+
+
setAskFilter(AskFilter) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field askFilter.
+
+
setCommand(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field command.
+
+
setCopies(Integer) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field copies.
+
+
setCsvCharset(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field csvCharset.
+
+
setCsvColumns(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field csvColumns.
+
+
setCsvFieldDel(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field csvFieldDel.
+
+
setCsvFirstRow(boolean) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field csvFirstRow.
+
+
setCsvRecordDel(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field csvRecordDel.
+
+
setDataFile(File) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field dataFile.
+
+
setDbDriver(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field dbDriver.
+
+
setDbHost(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field dbHost.
+
+
setDbName(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field dbName.
+
+
setDbPasswd(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field dbPasswd.
+
+
setDbPort(Integer) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field dbPort.
+
+
setDbSid(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field dbSid.
+
+
setDbType(DsType) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field dbType.
+
+
setDbUrl(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field dbUrl.
+
+
setDbUser(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field dbUser.
+
+
setInput(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field input.
+
+
setJdbcDir(File) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field jdbcDir.
+
+
setJsonQLQuery(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field jsonQLQuery.
+
+
setJsonQuery(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field jsonQuery.
+
+
setLocale(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field locale.
+
+
setLookAndFeel() - Static method in class de.cenote.jasperstarter.Report
+
+
setLookAndFeel.
+
+
setOutCharset(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field outCharset.
+
+
setOutFieldDel(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field outFieldDel.
+
+
setOutput(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field output.
+
+
setOutputFormats(List<OutputFormat>) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field outputFormats.
+
+
setParams(List<String>) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field params.
+
+
setPrinterName(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field printerName.
+
+
setReportName(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field reportName.
+
+
setResource(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field resource.
+
+
setVerbose(boolean) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field verbose.
+
+
setWithPrintDialog(boolean) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field withPrintDialog.
+
+
setWriteJasper(boolean) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field writeJasper.
+
+
setXmlXpath(String) - Method in class de.cenote.jasperstarter.Config
+
+
Setter for the field xmlXpath.
+
+
+ + + +

V

+
+
valueOf(String) - Static method in enum de.cenote.jasperstarter.types.AskFilter
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) - Static method in enum de.cenote.jasperstarter.types.Command
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) - Static method in enum de.cenote.jasperstarter.types.DsType
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) - Static method in enum de.cenote.jasperstarter.types.InputType
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) - Static method in enum de.cenote.jasperstarter.types.OutputFormat
+
+
Returns the enum constant of this type with the specified name.
+
+
values() - Static method in enum de.cenote.jasperstarter.types.AskFilter
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
values() - Static method in enum de.cenote.jasperstarter.types.Command
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
values() - Static method in enum de.cenote.jasperstarter.types.DsType
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
values() - Static method in enum de.cenote.jasperstarter.types.InputType
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
values() - Static method in enum de.cenote.jasperstarter.types.OutputFormat
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
view() - Method in class de.cenote.jasperstarter.Report
+
+
view.
+
+
+ + + +

W

+
+
WITH_PRINT_DIALOG - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant WITH_PRINT_DIALOG="with-print-dialog"
+
+
WRITE_JASPER - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant WRITE_JASPER="write-jasper"
+
+
+ + + +

X

+
+
XML_XPATH - Static variable in interface de.cenote.jasperstarter.types.Dest
+
+
Constant XML_XPATH="xml-xpath"
+
+
+A C D E F G H I J L M O P R S V W X 
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/index.html b/src/JasperStarter/docs/apidocs/index.html new file mode 100644 index 0000000..c560b22 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/index.html @@ -0,0 +1,76 @@ + + + + + + +JasperStarter 3.5.0 API + + + + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> + + + diff --git a/src/JasperStarter/docs/apidocs/overview-frame.html b/src/JasperStarter/docs/apidocs/overview-frame.html new file mode 100644 index 0000000..b1612f9 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/overview-frame.html @@ -0,0 +1,23 @@ + + + + + + +Overview List (JasperStarter 3.5.0 API) + + + + + +
All Classes
+
+

Packages

+ +
+

 

+ + diff --git a/src/JasperStarter/docs/apidocs/overview-summary.html b/src/JasperStarter/docs/apidocs/overview-summary.html new file mode 100644 index 0000000..661479d --- /dev/null +++ b/src/JasperStarter/docs/apidocs/overview-summary.html @@ -0,0 +1,144 @@ + + + + + + +Overview (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

JasperStarter 3.5.0 API

+
+
+ + + + + + + + + + + + + + + + +
Packages 
PackageDescription
de.cenote.jasperstarter 
de.cenote.jasperstarter.types 
+
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/overview-tree.html b/src/JasperStarter/docs/apidocs/overview-tree.html new file mode 100644 index 0000000..70b5cd4 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/overview-tree.html @@ -0,0 +1,163 @@ + + + + + + +Class Hierarchy (JasperStarter 3.5.0 API) + + + + + + + + +
+ + +
Skip navigation links
+ + + + +
+ + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + +
Skip navigation links
+ + + + +
+ + +

Copyright © 2012–2019 Cenote GmbH. All rights reserved.

+ + diff --git a/src/JasperStarter/docs/apidocs/package-list b/src/JasperStarter/docs/apidocs/package-list new file mode 100644 index 0000000..7e73c81 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/package-list @@ -0,0 +1,2 @@ +de.cenote.jasperstarter +de.cenote.jasperstarter.types diff --git a/src/JasperStarter/docs/apidocs/script.js b/src/JasperStarter/docs/apidocs/script.js new file mode 100644 index 0000000..b346356 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/src/JasperStarter/docs/apidocs/stylesheet.css b/src/JasperStarter/docs/apidocs/stylesheet.css new file mode 100644 index 0000000..98055b2 --- /dev/null +++ b/src/JasperStarter/docs/apidocs/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} diff --git a/src/JasperStarter/docs/changes.html b/src/JasperStarter/docs/changes.html index 918684f..c4dfc6e 100644 --- a/src/JasperStarter/docs/changes.html +++ b/src/JasperStarter/docs/changes.html @@ -1,6 +1,6 @@ @@ -16,7 +16,7 @@ - + @@ -40,7 +40,7 @@

JasperStarter - Running JasperReports from command line

-
  • org.olap4j:olap4j:jar:0.9.7.309-JS-3 (compile) Information
  • -
  • com.google.zxing:core:jar:3.2.1 (compile) Information
  • +
  • net.sf.jasperreports:jasperreports-chart-customizers:jar:6.7.0 (compile) Information
  • -
  • com.ibm.icu:icu4j:jar:57.1 (compile) Information
  • +
  • net.sf.jasperreports:jasperreports-chart-themes:jar:6.7.0 (compile) Information
  • -
  • net.sf.jasperreports:jasperreports-fonts:jar:6.0.0 (compile) Information
  • +
  • org.springframework:spring-beans:jar:4.3.21.RELEASE (compile) Information
  • -
  • net.sf.jasperreports:jasperreports-functions:jar:6.4.3 (compile) Information
  • +
  • org.springframework:spring-core:jar:4.3.21.RELEASE (compile) Information -
  • -
  • org.apache.poi:poi:jar:3.17 (compile) Information
  • +
  • org.apache.poi:poi:jar:3.17 (compile) Information
  • -
  • org.apache.xmlgraphics:batik-bridge:jar:1.9.1 (compile) Information
  • org.apache.xmlgraphics:batik-bridge:jar:1.9.1 (compile) Information
  • -
  • org.apache.xmlgraphics:batik-gvt:jar:1.9.1 (compile) Information
  • org.apache.xmlgraphics:batik-gvt:jar:1.9.1 (compile) Information
  • -
  • org.apache.xmlgraphics:batik-util:jar:1.9.1 (compile) Information
  • org.apache.xmlgraphics:batik-util:jar:1.9.1 (compile) Information
  • -
  • org.apache.xmlgraphics:batik-svg-dom:jar:1.9.1 (compile) Information
  • org.apache.xmlgraphics:batik-svg-dom:jar:1.9.1 (compile) Information
  • -
  • org.apache.xmlgraphics:batik-dom:jar:1.9.1 (compile) Information
  • org.apache.xmlgraphics:batik-dom:jar:1.9.1 (compile) Information
  • -
  • org.apache.xmlgraphics:batik-script:jar:1.9.1 (compile) Information
  • org.apache.xmlgraphics:batik-script:jar:1.9.1 (compile) Information
  • -
  • org.apache.xmlgraphics:batik-css:jar:1.9.1 (compile) Information
  • org.apache.xmlgraphics:batik-css:jar:1.9.1 (compile) Information
  • -
  • org.apache.xmlgraphics:batik-svggen:jar:1.9.1 (compile) Information
  • org.apache.xmlgraphics:batik-svggen:jar:1.9.1 (compile) Information
  • -
  • org.apache.xmlgraphics:batik-awt-util:jar:1.9.1 (compile) Information
  • org.apache.xmlgraphics:batik-awt-util:jar:1.9.1 (compile) Information
  • -
  • org.apache.xmlgraphics:xmlgraphics-commons:jar:2.2 (compile) Information
  • org.apache.xmlgraphics:xmlgraphics-commons:jar:2.2 (compile) Information
  • -
  • net.sf.barcode4j:barcode4j:jar:2.1 (compile) Information
  • net.sf.barcode4j:barcode4j:jar:2.1 (compile) Information
  • -
  • net.sourceforge.barbecue:barbecue:jar:1.5-beta1 (compile) Information
  • net.sourceforge.barbecue:barbecue:jar:1.5-beta1 (compile) Information
  • -
  • log4j:log4j:jar:1.2.17 (compile) Information
  • log4j:log4j:jar:1.2.17 (compile) Information
  • -
  • org.codehaus.groovy:groovy-all:jar:2.4.12 (compile) Information
  • org.codehaus.groovy:groovy-all:jar:2.4.12 (compile) Information
  • -
  • commons-io:commons-io:jar:2.5 (compile) Information
  • commons-io:commons-io:jar:2.5 (compile) Information
  • -
  • commons-lang:commons-lang:jar:2.6 (compile) Information
  • commons-lang:commons-lang:jar:2.6 (compile) Information
  • -
  • javax.servlet:servlet-api:jar:2.5 (compile) Information
  • javax.servlet:servlet-api:jar:2.5 (compile) Information
  • +

    Licence projektu: Tento projekt nemá určenou svoji licenci.

    +
  • org.antlr:antlr:jar:3.0b5 (compile) Information +
  • Licence

    GNU LESSER GENERAL PUBLIC LICENSE: JCalendar

    @@ -1413,17 +1428,18 @@

    Licence

    Mozilla Public License, Version 2.0: Mozilla Rhino

    Jython Software License: Jython

    Eclipse Public License v1.0: Eclipse ECJ

    -

    Neznámý: CLI, Castor CORE - Core code/functionality, Castor XML - core, StAX, ant-launcher, avalon-framework-impl, barbecue, itext, jakarta-regexp, olap4j, org.apache.tools.ant, servlet-api

    +

    Neznámý: CLI, Castor CORE - Core code/functionality, Castor XML - core, StAX, ant-launcher, avalon-framework-impl, barbecue, itext, org.apache.tools.ant, servlet-api

    ICU License: ICU4J

    -

    GNU Lesser General Public License: JasperReports, JasperReports Font Extension, JasperReports Functions

    +

    GNU Lesser General Public License: JasperReports, JasperReports Chart Customizers, JasperReports Chart Themes, JasperReports Font Extension, JasperReports Functions

    Bouncy Castle Licence: Bouncy Castle Provider

    -

    Apache 2: Joda time, Lucene Common Analyzers, Lucene Core, Lucene Queries, Lucene QueryParsers, Lucene Sandbox

    +

    Apache 2: Joda-Time

    GNU General Public Library: Streaming API for XML

    -

    Apache License, Version 2.0: Apache Commons BeanUtils, Apache Commons Codec, Apache Commons Collections, Apache Commons IO, SnakeYAML

    +

    BSD License: AntLR Parser Generator, Stringtemplate

    +

    Apache License, Version 2.0: Apache Commons BeanUtils, Apache Commons Codec, Apache Commons Collections, Apache Commons IO, SnakeYAML, Spring Beans, Spring Core, Spring Expression Language (SpEL)

    COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0: Streaming API for XML

    MIT: argparse4j

    GNU Lesser General Public Licence: JCommon, JFreeChart

    -

    The Apache Software License, Version 2.0: Apache Groovy, Apache Log4j, Apache POI, Apache XML Graphics Commons, Barcode4J, Commons Digester, Commons Lang, Commons Logging, Jackson-annotations, Jackson-core, JasperStarter, StAX API, XML Commons External Components XML APIs, XML Commons External Components XML APIs Extensions, Xalan Java, Xalan Java Serializer, ZXing Core, jackson-databind, javax.inject, org.apache.xmlgraphics:batik-anim, org.apache.xmlgraphics:batik-awt-util, org.apache.xmlgraphics:batik-bridge, org.apache.xmlgraphics:batik-constants, org.apache.xmlgraphics:batik-css, org.apache.xmlgraphics:batik-dom, org.apache.xmlgraphics:batik-ext, org.apache.xmlgraphics:batik-gvt, org.apache.xmlgraphics:batik-i18n, org.apache.xmlgraphics:batik-parser, org.apache.xmlgraphics:batik-script, org.apache.xmlgraphics:batik-svg-dom, org.apache.xmlgraphics:batik-svggen, org.apache.xmlgraphics:batik-util, org.apache.xmlgraphics:batik-xml

    +

    The Apache Software License, Version 2.0: Apache Groovy, Apache Log4j, Apache POI, Apache XML Graphics Commons, Barcode4J, Commons Digester, Commons Lang, Commons Logging, Jackson-annotations, Jackson-core, JasperStarter, StAX API, XML Commons External Components XML APIs, XML Commons External Components XML APIs Extensions, Xalan Java, Xalan Java Serializer, jackson-databind, javax.inject, org.apache.xmlgraphics:batik-anim, org.apache.xmlgraphics:batik-awt-util, org.apache.xmlgraphics:batik-bridge, org.apache.xmlgraphics:batik-constants, org.apache.xmlgraphics:batik-css, org.apache.xmlgraphics:batik-dom, org.apache.xmlgraphics:batik-ext, org.apache.xmlgraphics:batik-gvt, org.apache.xmlgraphics:batik-i18n, org.apache.xmlgraphics:batik-parser, org.apache.xmlgraphics:batik-script, org.apache.xmlgraphics:batik-svg-dom, org.apache.xmlgraphics:batik-svggen, org.apache.xmlgraphics:batik-util, org.apache.xmlgraphics:batik-xml

    Detaily o souboru závislosti

    @@ -1437,6 +1453,15 @@

    Detaily o souboru závislosti<

    + + + + + + + + + @@ -1445,7 +1470,7 @@

    Detaily o souboru závislosti<

    - + @@ -1454,39 +1479,30 @@

    Detaily o souboru závislosti<

    - - - - - - - - - - - - - - - + + + + + + - - - - - - + + + + + + - - - - - + + + + + @@ -1590,15 +1606,6 @@

    Detaily o souboru závislosti<

    - - - - - - - - - @@ -1607,7 +1614,7 @@

    Detaily o souboru závislosti<

    - + @@ -1616,7 +1623,7 @@

    Detaily o souboru závislosti<

    - + @@ -1625,16 +1632,16 @@

    Detaily o souboru závislosti<

    - - - - - + + + + + - + @@ -1643,7 +1650,7 @@

    Detaily o souboru závislosti<

    - + @@ -1652,16 +1659,34 @@

    Detaily o souboru závislosti<

    + + + + + + + + + - - - - - + + + + + + + + + + + + + + @@ -1670,16 +1695,16 @@

    Detaily o souboru závislosti<

    - - - + + + - + @@ -1688,7 +1713,7 @@

    Detaily o souboru závislosti<

    - + @@ -1697,7 +1722,25 @@

    Detaily o souboru závislosti<

    + + + + + + + + + + + + + + + + + + @@ -1706,7 +1749,7 @@

    Detaily o souboru závislosti<

    - + @@ -1715,7 +1758,7 @@

    Detaily o souboru závislosti<

    - + @@ -1724,51 +1767,6 @@

    Detaily o souboru závislosti<

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1869,22 +1867,22 @@

    Detaily o souboru závislosti<

    - - - - - + + + + + - + - - - - - + + + + + - + @@ -1902,7 +1900,7 @@

    Detaily o souboru závislosti<
    -
    Copyright © 2012-2017 +
    Copyright © 2012-2019 Cenote GmbH. All Rights Reserved. diff --git a/src/JasperStarter/docs/cs/files.html b/src/JasperStarter/docs/cs/files.html index eae8abe..697d69e 100644 --- a/src/JasperStarter/docs/cs/files.html +++ b/src/JasperStarter/docs/cs/files.html @@ -1,6 +1,6 @@ @@ -16,7 +16,7 @@ - + @@ -40,7 +40,7 @@

    JasperStarter - Spouštění JasperReports z příkazového řádku

    - Last Published: 2017-10-17 + Last Published: 2019-02-10

    @@ -369,7 +372,7 @@

    The Apache Software License, Version 2.0 -
    Copyright © 2012-2017 +
    Copyright © 2012-2019 Cenote GmbH. All Rights Reserved. diff --git a/src/JasperStarter/docs/cs/project-info.html b/src/JasperStarter/docs/cs/project-info.html index 1cc10a0..48e290d 100644 --- a/src/JasperStarter/docs/cs/project-info.html +++ b/src/JasperStarter/docs/cs/project-info.html @@ -1,6 +1,6 @@ @@ -16,7 +16,7 @@ - + @@ -40,7 +40,7 @@

    JasperStarter - Spouštění JasperReports z příkazového řádku

    +
    - Last Published: 2017-10-17 + Last Published: 2019-02-10

    @@ -185,7 +188,7 @@

    Souhrn

    -
    Copyright © 2012-2017 +
    Copyright © 2012-2019 Cenote GmbH. All Rights Reserved. diff --git a/src/JasperStarter/docs/cs/project-reports.html b/src/JasperStarter/docs/cs/project-reports.html new file mode 100644 index 0000000..9897bc1 --- /dev/null +++ b/src/JasperStarter/docs/cs/project-reports.html @@ -0,0 +1,172 @@ + + + + + + + JasperStarter - Vytvořené sestavy + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    + +
    + +
    + +
    +

    Vytvořené sestavy

    +

    Tento dokument je přehledem různých souhrnů, které jsou automaticky vytvářené pomocí Maven . Každý souhrn je stručně popsán níže.

    +
    +

    Souhrn

    +

    Debug Zapečetění
    antlr-2.7.7.jar434,85 kB239224121.2debug-
    avalon-framework-impl-4.2.0.jar 59,30 kB 451.1 debug -
    jcommander-1.64.jar 64,05 kB 651.6 debug -
    jackson-annotations-2.1.4.jar33,67 kB594811.5debug-
    jackson-core-2.1.4.jar202,02 kB1108981.5jackson-annotations-2.9.5.jar65,41 kB806811.6 debug -
    jackson-databind-2.1.4.jar904,85 kB565532201.5jackson-core-2.9.5.jar314,05 kB130105111.6 debug -
    core-3.2.1.jar531,64 kB30526431jackson-databind-2.9.5.jar1,28 MB65862420 1.6 debug -
    debug -
    jakarta-regexp-1.4.jar27,91 kB221711.1release-
    javax.inject-1.jar 2,44 kB 81.5 release -
    servlet-api-2.5.jar 102,65 kB 681.5 debug -
    stax-api-1.0-2.jar 22,80 kB 441.5 debug -
    joda-time-2.1.jar557,11 kB704228
    joda-time-2.9.9.jar619,19 kB763247 7 1.5 debug -
    log4j-1.2.17.jar 478,40 kB 3531.4 debug -
    barcode4j-2.1.jar 267,97 kB 1741.4 debug -
    jasperreports-6.7.0.jar5,28 MB3 7003 3121311.6debug-
    jasperreports-6.4.3.jar5,24 MB3 6873 301132jasperreports-chart-customizers-6.7.0.jar42,94 kB53376 1.6 debug -
    jasperreports-chart-themes-6.7.0.jar174,92 kB825541.6debug-
    jasperreports-fonts-6.0.0.jar 2,37 MB 27- release -
    jasperreports-functions-6.4.3.jar31,42 kB
    jasperreports-functions-6.7.0.jar31,35 kB 23 8 1 1.6 debug -
    argparse4j-0.5.0.jar 81,85 kB 751.5 debug -
    barbecue-1.5-beta1.jar 88,94 kB 791.3 release -
    antlr-3.0b5.jar474,83 kB20617291.4debug-
    stringtemplate-3.0.jar124,75 kB827441.4release-
    ant-1.7.1.jar 1,26 MB 8181.2 debug -
    ant-launcher-1.7.1.jar 11,86 kB 121.2 debug -
    commons-collections4-4.1.jar 733,63 kB 5481.6 debug -
    lucene-analyzers-common-4.5.1.jar1,51 MB603495611.6debug-
    lucene-core-4.5.1.jar2,19 MB1 4981 465231.6debug-
    lucene-queries-4.5.1.jar200,39 kB16815651.6debug-
    lucene-queryparser-4.5.1.jar375,86 kB284246251.6debug-
    lucene-sandbox-4.5.1.jar44,51 kB342421.6debug-
    poi-3.17.jar 2,58 MBDebug Zapečetění
    4737,69 MB22 39516 8297844534,70 MB20 34914 882673 1.63937 1
    compile: 46compile: 37,63 MBcompile: 22 330compile: 16 765compile: 779compile: 44compile: 34,63 MBcompile: 20 284compile: 14 818compile: 668 -compile: 38compile: 36 compile: 1
    test: 1
    + + + + + +
    DokumentPopis
    JavadocJavadoc API documentation.
    + + + +
    + + + + diff --git a/src/JasperStarter/docs/cs/project-summary.html b/src/JasperStarter/docs/cs/project-summary.html index 71efa94..19e89ce 100644 --- a/src/JasperStarter/docs/cs/project-summary.html +++ b/src/JasperStarter/docs/cs/project-summary.html @@ -1,6 +1,6 @@ @@ -16,7 +16,7 @@ - + @@ -40,7 +40,7 @@

    JasperStarter - Spouštění JasperReports z příkazového řádku

    +
    - Last Published: 2017-10-17 + Last Published: 2019-02-10

    @@ -194,13 +197,13 @@

    Sestavení

    jasperstarter Verze -3.2.1 +3.5.0 Typ jar JDK Rev -1.6 +1.8 @@ -208,7 +211,7 @@

    Sestavení