Package | Description |
---|---|
net.windward.tools | |
net.windward.util |
Low-level utilities.
|
net.windward.xmlreport |
The reporting-specific part of the Windward Engine.
|
Modifier and Type | Method and Description |
---|---|
static void |
ShowFonts.main(java.lang.String[] args)
Either run with no parameters, or a range of characters to test for entered in hex.
|
Modifier and Type | Method and Description |
---|---|
static void |
UUEncode.main(java.lang.String[] args)
Create a Base64 uuencoded version of a file.
|
Modifier and Type | Method and Description |
---|---|
static void |
ProcessReport.clean(java.io.InputStream template,
java.io.OutputStream cleanedStream,
int cleanedType,
boolean removeUnused,
int tagStyle,
ProcessReport.CleanDatasource[] datasources,
int paramMode,
int templateVersion)
Clean the requested template.
|
static void |
ProcessReport.clean(java.io.InputStream template,
java.io.OutputStream cleanedStream,
int cleanedType,
boolean removeUnused,
int tagStyle,
ProcessReport.CleanDatasource[] datasources,
int paramMode,
int templateVersion,
boolean fixExpressions)
Clean the requested template.
|
static void |
ProcessReport.clean(java.io.InputStream template,
java.io.OutputStream cleanedStream,
int cleanedType,
boolean removeUnused,
int tagStyle,
ProcessReport.CleanDatasource[] datasources,
int paramMode,
int templateVersion,
boolean fixExpressions,
java.lang.String license)
Clean the requested template.
|
ProcessReportAPIBase |
ProcessXlsx.duplicate(java.io.OutputStream out)
Creates and returns a copy of this object.
|
ProcessReportAPIBase |
ProcessTxt.duplicate(java.io.OutputStream out)
Creates and returns a copy of this object.
|
ProcessReportAPIBase |
ProcessRtf.duplicate(java.io.OutputStream out)
Creates and returns a copy of this object.
|
ProcessReportAPIBase |
ProcessReportAPIBase.duplicate(java.io.OutputStream out)
Deprecated.
Creates and returns a copy of this object.
|
ProcessReportAPIBase |
ProcessPrinter.duplicate(java.io.OutputStream out)
Creates and returns a copy of this ProcessReport object.
|
ProcessReportAPIBase |
ProcessPptx.duplicate(java.io.OutputStream out)
Creates and returns a copy of this object.
|
ProcessReportAPIBase |
ProcessPostScript.duplicate(java.io.OutputStream out)
Creates and returns a copy of this object.
|
ProcessReportAPIBase |
ProcessPdf.duplicate(java.io.OutputStream out)
Creates and returns a copy of this object.
|
ProcessReportAPIBase |
ProcessImage.duplicate(java.io.OutputStream out)
Unsupported for images as this writes an array of page objects, not a single output stream.
|
ProcessReportAPIBase |
ProcessHtml.duplicate(java.io.OutputStream out)
Creates and returns a copy of this object.
|
ProcessReportAPIBase |
ProcessDocx.duplicate(java.io.OutputStream out)
Creates and returns a copy of this object.
|
ProcessReportAPIBase |
ProcessCsv.duplicate(java.io.OutputStream out)
Creates and returns a copy of this object.
|
ProcessHtmlAPI |
ProcessHtmlAPI.duplicate(java.io.OutputStream out,
java.io.OutputStream cssStream)
Deprecated.
Creates and returns a copy of this object.
|
ProcessHtmlAPI |
ProcessHtml.duplicate(java.io.OutputStream out,
java.io.OutputStream cssStream)
Creates and returns a copy of this object.
|
static void |
ProcessReport.getTagTree(java.io.InputStream file,
java.io.OutputStream tagTree,
java.lang.String license)
Create an XML file of the tags in the template.
|
static TemplateInfo |
ProcessReport.getTemplateMetrics(java.io.InputStream file)
Returns information about all vars, datasources, and tags referenced in the template.
|
static TemplateInfo |
ProcessReport.getTemplateMetrics(java.io.InputStream file,
boolean quiet)
Returns information about all vars, datasources, and tags referenced in the template.
|
static TemplateInfo |
ProcessReport.getTemplateMetrics(java.io.InputStream file,
boolean quiet,
boolean ignoreTags) |
static TemplateInfo |
ProcessReport.getTemplateMetrics(java.io.InputStream file,
boolean quiet,
boolean ignoreTags,
java.lang.String license)
Get the metrics embedded in the passed in template.
|
static void |
ProcessReport.init()
This method should be called before any other code anywhere in Windward Reports.
|
static int |
JoinReports.joinPdf(ProcessReport[] documents,
java.io.OutputStream report)
Join multiple reports into a single generated PDF.
|
static void |
JoinReports.main(java.lang.String[] args)
Join multiple files into a single PDF.
|
void |
ProcessReportAPIBase.processSetup(int inputType)
Deprecated.
Process the template and get the report ready to process data files.
|
Constructor and Description |
---|
ProcessCsv(java.io.InputStream template)
Create a ProcessCsv object with the passed in template.
|
ProcessCsv(java.io.InputStream xmlData,
java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessReport object with the passed in template & data streams, writing it to
the passed in report stream.
|
ProcessCsv(java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessCsv object with the passed in template, writing it to the passed in report stream.
|
ProcessDocx(java.io.InputStream template)
Create a ProcessDocx object with the passed in template.
|
ProcessDocx(java.io.InputStream xmlData,
java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessDocx object with the passed in template & data streams, writing it to
the passed in report stream.
|
ProcessDocx(java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessDocx object with the passed in template, writing it to the passed in report stream.
|
ProcessDocx(ProcessReport src)
Do not use!!! Not part of the public API.
|
ProcessGraphics2D(DataSourceProvider data,
java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessReport object with the passed in template & data streams, writing it to
the passed in report stream.
|
ProcessGraphics2D(Document document) |
ProcessGraphics2D(java.io.InputStream templateStream)
Create a ProcessReport object with the passed in template.
|
ProcessGraphics2D(java.io.InputStream xmlData,
java.io.InputStream templateStream,
java.io.OutputStream report)
Create a ProcessReport object with the passed in template & data streams, writing it to
the passed in report stream.
|
ProcessGraphics2D(java.io.InputStream templateStream,
java.io.OutputStream report)
Create a ProcessReport object with the passed in template, writing it to the passed in report stream.
|
ProcessGraphics2D(ProcessReport src)
Do not use!!! Not part of the public API.
|
ProcessGraphics2D(ProcessReport src,
java.io.OutputStream out)
Creates and returns a copy of this object.
|
ProcessHtml(java.io.InputStream template)
Create a ProcessHtml object with the passed in template.
|
ProcessHtml(java.io.InputStream template,
java.util.ArrayList<java.io.ByteArrayOutputStream> reportPages)
Create a ProcessHtml object with the passed in template.
|
ProcessHtml(java.io.InputStream xmlData,
java.io.InputStream template,
java.util.ArrayList<java.io.ByteArrayOutputStream> reportPages)
Create a ProcessReport object with the passed in template & data streams.
|
ProcessHtml(java.io.InputStream xmlData,
java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessReport object with the passed in template & data streams, writing it to
the passed in report stream.
|
ProcessHtml(java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessHtml object with the passed in template, writing it to the passed in report stream.
|
ProcessImage(java.io.InputStream template,
int imageFormat)
Deprecated.
use ProcessImage(InputStream template, String imageFormat) instead.
|
ProcessImage(java.io.InputStream template,
int imageFormat,
int dpi)
Deprecated.
use ProcessImage(InputStream template, String imageFormat, int dpi) instead.
|
ProcessImage(java.io.InputStream template,
java.lang.String imageFormat)
Create a ProcessImage object with the passed in template.
|
ProcessImage(java.io.InputStream template,
java.lang.String imageFormat,
int dpi)
Create a ProcessImage object with the passed in template.
|
ProcessOpenXml(java.io.InputStream template)
Create a ProcessDocx object with the passed in template.
|
ProcessOpenXml(java.io.InputStream xmlData,
java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessDocx object with the passed in template & data streams, writing it to
the passed in report stream.
|
ProcessOpenXml(java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessDocx object with the passed in template, writing it to the passed in report stream.
|
ProcessPdf(java.io.InputStream template)
Create a ProcessPdf object with the passed in template.
|
ProcessPdf(java.io.InputStream xmlData,
java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessPdf object with the passed in template & data streams, writing it to
the passed in report stream.
|
ProcessPdf(java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessPdf object with the passed in template, writing it to the passed in report stream.
|
ProcessPostScript(java.io.InputStream template)
THIS IS A BETA FEATURE Create a ProcessPostScript object with the passed in template.
|
ProcessPostScript(java.io.InputStream template,
java.io.OutputStream report)
THIS IS A BETA FEATURE Create a ProcessPostScript object with the passed in template, writing it to the passed in report stream.
|
ProcessPptx(java.io.InputStream template)
Create a ProcessPptx object with the passed in template.
|
ProcessPptx(java.io.InputStream xmlData,
java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessPptx object with the passed in template & data streams, writing it to
the passed in report stream.
|
ProcessPptx(java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessPptx object with the passed in template, writing it to the passed in report stream.
|
ProcessPptx(ProcessReport src)
Do not use!!! Not part of the public API.
|
ProcessPrinter(DataSourceProvider data,
java.io.InputStream template,
java.lang.String printer,
int copies)
Create a ProcessPrinter.
|
ProcessPrinter(java.io.InputStream templateStream)
Create a ProcessPrinter.
|
ProcessPrinter(java.io.InputStream templateStream,
java.lang.String printer)
Create a printer report.
|
ProcessPrinter(ProcessPrinter src)
Creates and returns a copy of this ProcessPrinter object.
|
ProcessReport(DataSourceProvider data,
java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessReport object with the passed in template & data streams, writing it to
the passed in report stream.
|
ProcessReport(java.io.InputStream templateStream)
Create a ProcessReport object with the passed in template.
|
ProcessReport(java.io.InputStream xmlData,
java.io.InputStream templateStream,
java.io.OutputStream report)
Create a ProcessReport object with the passed in template & data streams, writing it to
the passed in report stream.
|
ProcessReport(java.io.InputStream templateStream,
java.io.OutputStream report)
Create a ProcessReport object with the passed in template, writing it to the passed in report stream.
|
ProcessReport(ProcessReport src,
java.io.OutputStream out)
Creates and returns a copy of this object.
|
ProcessRtf(java.io.InputStream template)
Create a ProcessRtf object with the passed in template.
|
ProcessRtf(java.io.InputStream xmlData,
java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessRtf object with the passed in template & data streams, writing it to
the passed in report stream.
|
ProcessRtf(java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessRtf object with the passed in template, writing it to the passed in report stream.
|
ProcessTxt(java.io.InputStream template)
Create a ProcessTxt object with the passed in template.
|
ProcessTxt(java.io.InputStream xmlData,
java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessReport object with the passed in template & data streams, writing it to
the passed in report stream.
|
ProcessTxt(java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessTxt object with the passed in template, writing it to the passed in report stream.
|
ProcessXlsx(java.io.InputStream template)
Create a ProcessXlsx object with the passed in template.
|
ProcessXlsx(java.io.InputStream xmlData,
java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessXlsx object with the passed in template & data streams, writing it to
the passed in report stream.
|
ProcessXlsx(java.io.InputStream template,
java.io.OutputStream report)
Create a ProcessXlsx object with the passed in template, writing it to the passed in report stream.
|
ProcessXlsx(ProcessReport src)
Do not use!!! Not part of the public API.
|
Copyright © 2002-2021 Windward Studios, LLC. - All Rights Reserved. We are Java document generation software