org.jfree.report.modules.gui.html |
An HTML export module. The module registers itself during the module initialization
in the preview frame.
The module supports both HTML 4.01 and XHTML 1.0 output.
As with all table style exports, this target does not support overlapping elements.
If two elements request the same cell, the first element wins.
This target supports three modes.
- Stream mode
prints all content into a single stream. Generated images will be
ignored and the stream contains an inlined stylesheet definition. External
images loaded by an file or http url will be referenced in the stream,
all other internally generated image content will be discarded.
- Directory export
Writes the content and all external content into a directory. The report
contents will be written into a single file, while any external content
will be written into a separate data directory. This output mode will
generate PNG files for all internal images; external images can be copied
into the output directory.
- ZIP Directory export
Provides the same features as the directory export, but will generate the
contents within a ZIP file.
|
Java Source File Name | Type | Comment |
HtmlDirExportDialog.java | Class | A dialog that is used to perform the printing of a report into an HTML file. |
HtmlDirExportPlugin.java | Class | Encapsulates the HtmlExportDialog into a separate plugin. |
HtmlDirExportTask.java | Class | An export task implementation that exports the report into a HTML directory structure. |
HtmlExportGUIModule.java | Class | The module definition for the Html export gui module. |
HtmlStreamExportDialog.java | Class | A dialog that is used to perform the printing of a report into an HTML file. |
HtmlStreamExportPlugin.java | Class | Encapsulates the HtmlExportDialog into a separate plugin. |
HtmlStreamExportTask.java | Class | An export task implementation that exports the report into a single HTML file. |
HtmlZipExportDialog.java | Class | A dialog that is used to perform the printing of a report into an HTML file. |
HtmlZipExportPlugin.java | Class | Encapsulates the HtmlExportDialog into a separate plugin. |
HtmlZipExportTask.java | Class | An export task implementation that exports the report into a ZIPped Html directory
structure. |