Uses of Interface
net.sf.jasperreports.engine.JRTemplate
-
Packages that use JRTemplate Package Description net.sf.jasperreports.engine Provides access to the library's main functionality through facade classes for compiling, filling and exporting reports and also publishes the library's main interfaces and classes.net.sf.jasperreports.engine.fill Contains fill time implementations for the library's main interfaces and the entire engine used in the filling process (the actual core of JasperReports).net.sf.jasperreports.engine.xml Contains classes for loading report templates from XML files. -
-
Uses of JRTemplate in net.sf.jasperreports.engine
Classes in net.sf.jasperreports.engine that implement JRTemplate Modifier and Type Class Description class
JRSimpleTemplate
DefaultJRTemplate
implementation. -
Uses of JRTemplate in net.sf.jasperreports.engine.fill
Methods in net.sf.jasperreports.engine.fill that return JRTemplate Modifier and Type Method Description JRTemplate
ReportTemplateSource. getTemplate()
Methods in net.sf.jasperreports.engine.fill that return types with arguments of type JRTemplate Modifier and Type Method Description List<JRTemplate>
JRBaseFiller. getTemplates()
Methods in net.sf.jasperreports.engine.fill with parameters of type JRTemplate Modifier and Type Method Description static ReportTemplateSource
ReportTemplateSource. of(JRTemplate template)
static ReportTemplateSource
ReportTemplateSource. of(JRTemplate template, ResourceInfo templateResourceInfo)
void
ReportTemplateSource. setTemplate(JRTemplate template)
-
Uses of JRTemplate in net.sf.jasperreports.engine.xml
Methods in net.sf.jasperreports.engine.xml that return JRTemplate Modifier and Type Method Description static JRTemplate
JRXmlTemplateLoader. load(File file)
static JRTemplate
JRXmlTemplateLoader. load(InputStream data)
static JRTemplate
JRXmlTemplateLoader. load(String location)
static JRTemplate
JRXmlTemplateLoader. load(URL url)
JRTemplate
JacksonReportLoader. loadTemplate(JasperReportsContext context, byte[] data)
JRTemplate
JRXmlTemplateLoader. loadTemplate(File file)
Parses a template XML file into atemplate object
.JRTemplate
JRXmlTemplateLoader. loadTemplate(InputStream data)
Parses a template XML data stream into atemplate object
.JRTemplate
JRXmlTemplateLoader. loadTemplate(String location)
Parses a template XML found at a specified location into atemplate object
.JRTemplate
JRXmlTemplateLoader. loadTemplate(URL url)
Parses a template XML located at a URL into atemplate object
.JRTemplate
ReportLoader. loadTemplate(JasperReportsContext context, byte[] data)
Methods in net.sf.jasperreports.engine.xml with parameters of type JRTemplate Modifier and Type Method Description boolean
JacksonReportWriter. writeTemplate(JRTemplate template, String encoding, Writer out)
static String
JRXmlTemplateWriter. writeTemplate(JasperReportsContext jasperReportsContext, JRTemplate template)
Returns the XML representation of a template.static void
JRXmlTemplateWriter. writeTemplate(JasperReportsContext jasperReportsContext, JRTemplate template, OutputStream out)
Writes the XML representation of a template to an output stream.static void
JRXmlTemplateWriter. writeTemplate(JasperReportsContext jasperReportsContext, JRTemplate template, OutputStream out, String encoding)
Writes the XML representation of a template to an output stream.protected static void
JRXmlTemplateWriter. writeTemplate(JasperReportsContext jasperReportsContext, JRTemplate template, Writer out, String encoding)
static String
JRXmlTemplateWriter. writeTemplate(JasperReportsContext jasperReportsContext, JRTemplate template, String encoding)
Returns the XML representation of a template.static String
JRXmlTemplateWriter. writeTemplate(JRTemplate template)
Returns the XML representation of a template.static void
JRXmlTemplateWriter. writeTemplate(JRTemplate template, OutputStream out)
Writes the XML representation of a template to an output stream.static void
JRXmlTemplateWriter. writeTemplate(JRTemplate template, OutputStream out, String encoding)
Writes the XML representation of a template to an output stream.static String
JRXmlTemplateWriter. writeTemplate(JRTemplate template, String encoding)
Returns the XML representation of a template.boolean
ReportWriter. writeTemplate(JRTemplate template, String encoding, Writer out)
static void
JRXmlTemplateWriter. writeTemplateToFile(JasperReportsContext jasperReportsContext, JRTemplate template, String outputFile)
Writes the XML representation of a template to a file.static void
JRXmlTemplateWriter. writeTemplateToFile(JasperReportsContext jasperReportsContext, JRTemplate template, String outputFile, String encoding)
Writes the XML representation of a template to a file.static void
JRXmlTemplateWriter. writeTemplateToFile(JRTemplate template, String outputFile)
Writes the XML representation of a template to a file.static void
JRXmlTemplateWriter. writeTemplateToFile(JRTemplate template, String outputFile, String encoding)
Writes the XML representation of a template to a file.
-