|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use JRException | |
|---|---|
| net.sf.jasperreports.engine | Provides access to the library's main functionality through fa?ade classes for compiling, filling and exporting reports and also publishes the library's main interfaces and classes. |
| net.sf.jasperreports.engine.data | Provides various report data source implementations and allows creating custom data sources. |
| net.sf.jasperreports.engine.design | Contains design time implementations for the library's main interfaces as well as report compiling tools. |
| net.sf.jasperreports.engine.export | Provides utility classes for exporting reports to various popular formats. |
| 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.print | Provides printing support. |
| net.sf.jasperreports.engine.util | Utility classes. |
| net.sf.jasperreports.engine.xml | Contains classes for loading report templates from XML files. |
| net.sf.jasperreports.view | Contains the Jasper viewer implementation. |
| net.sf.jasperreports.view.save | Contains classes for saving reports inside the Jasper viewer. |
| Uses of JRException in net.sf.jasperreports.engine |
|---|
| Subclasses of JRException in net.sf.jasperreports.engine | |
|---|---|
class |
JRScriptletException
|
| Methods in net.sf.jasperreports.engine that throw JRException | |
|---|---|
void |
JasperPrint.addFont(JRReportFont reportFont)
Adds a new font to the report fonts. |
protected java.lang.String |
JRResultSetDataSource.clobToString(java.sql.Clob clob)
|
static JasperReport |
JasperManager.compileReport(java.io.InputStream inputStream)
Deprecated. Replaced by JasperCompileManager.compileReport(InputStream). |
static JasperReport |
JasperCompileManager.compileReport(java.io.InputStream inputStream)
Compiles the serialized report design object read from the supplied input stream and returns the generated compiled report design object. |
static JasperReport |
JasperManager.compileReport(JasperDesign jasperDesign)
Deprecated. Replaced by JasperCompileManager.compileReport(JasperDesign). |
static JasperReport |
JasperCompileManager.compileReport(JasperDesign jasperDesign)
Compiles the report design object received as parameter and returns the generated compiled report design object. |
static JasperReport |
JasperManager.compileReport(java.lang.String sourceFileName)
Deprecated. Replaced by JasperCompileManager.compileReport(String). |
static JasperReport |
JasperCompileManager.compileReport(java.lang.String sourceFileName)
Compiles the XML report design file received as parameter, and returns the compiled report design object. |
static void |
JasperManager.compileReportToFile(JasperDesign jasperDesign,
java.lang.String destFileName)
Deprecated. Replaced by JasperCompileManager.compileReportToFile(JasperDesign, String). |
static void |
JasperCompileManager.compileReportToFile(JasperDesign jasperDesign,
java.lang.String destFileName)
Compiles the report design object received as the first parameter, placing the result in the file specified by the second parameter. |
static java.lang.String |
JasperManager.compileReportToFile(java.lang.String sourceFileName)
Deprecated. Replaced by JasperCompileManager.compileReportToFile(String). |
static java.lang.String |
JasperCompileManager.compileReportToFile(java.lang.String sourceFileName)
Compiles the XML report design file specified by the parameter. |
static void |
JasperManager.compileReportToFile(java.lang.String sourceFileName,
java.lang.String destFileName)
Deprecated. Replaced by JasperCompileManager.compileReportToFile(String, String). |
static void |
JasperCompileManager.compileReportToFile(java.lang.String sourceFileName,
java.lang.String destFileName)
Compiles the XML report design file received as the first parameter, placing the result in the file specified by the second parameter. |
static void |
JasperManager.compileReportToStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream)
Deprecated. Replaced by JasperCompileManager.compileReportToStream(InputStream, OutputStream). |
static void |
JasperCompileManager.compileReportToStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream)
Compiles the XML representation of the report design read from the supplied input stream and writes the generated compiled report design object to the output stream specified by the second parameter. |
static void |
JasperManager.compileReportToStream(JasperDesign jasperDesign,
java.io.OutputStream outputStream)
Deprecated. Replaced by JasperCompileManager.compileReportToStream(JasperDesign, OutputStream). |
static void |
JasperCompileManager.compileReportToStream(JasperDesign jasperDesign,
java.io.OutputStream outputStream)
Compiles the report design object represented by the first parameter and writes the generated compiled report design object to the output stream specified by the second parameter. |
JRDataSource |
JRDataSourceProvider.create(JasperReport report)
Creates and returns a new instance of the provided data source. |
void |
JRDataSourceProvider.dispose(JRDataSource dataSource)
Disposes the data source previously obtained using the create method. |
abstract void |
JRAbstractExporter.exportReport()
|
void |
JRExporter.exportReport()
Actually starts the export process. |
static void |
JasperExportManager.exportReportToHtmlFile(JasperPrint jasperPrint,
java.lang.String destFileName)
Exports the generated report object received as parameter into HTML format, placing the result into the second file parameter. |
static java.lang.String |
JasperExportManager.exportReportToHtmlFile(java.lang.String sourceFileName)
Exports the generated report file specified by the parameter into HTML format. |
static void |
JasperExportManager.exportReportToHtmlFile(java.lang.String sourceFileName,
java.lang.String destFileName)
Exports the generated report file specified by the first parameter into HTML format, placing the result into the second file parameter. |
static byte[] |
JasperExportManager.exportReportToPdf(JasperPrint jasperPrint)
Exports the generated report object received as parameter into PDF format and returns the binary content as a byte array. |
static void |
JasperExportManager.exportReportToPdfFile(JasperPrint jasperPrint,
java.lang.String destFileName)
Exports the generated report file specified by the first parameter into PDF format, the result being placed in the second file parameter. |
static java.lang.String |
JasperExportManager.exportReportToPdfFile(java.lang.String sourceFileName)
Exports the generated report file specified by the parameter into PDF format. |
static void |
JasperExportManager.exportReportToPdfFile(java.lang.String sourceFileName,
java.lang.String destFileName)
Exports the generated report file specified by the first parameter into PDF format, the result being placed in the second file parameter. |
static void |
JasperExportManager.exportReportToPdfStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream)
Exports the generated report read from the supplied input stream into PDF format and writes the results to the output stream specified by the second parameter. |
static void |
JasperExportManager.exportReportToPdfStream(JasperPrint jasperPrint,
java.io.OutputStream outputStream)
Exports the generated report object received as first parameter into PDF format and writes the results to the output stream specified by the second parameter. |
static java.lang.String |
JasperExportManager.exportReportToXml(JasperPrint jasperPrint)
Exports the generated report object supplied as parameter into XML format and returs the result as String. |
static void |
JasperExportManager.exportReportToXmlFile(JasperPrint jasperPrint,
java.lang.String destFileName,
boolean isEmbeddingImages)
Exports the generated report object received as parameter into XML format, placing the result into the second file parameter. |
static java.lang.String |
JasperExportManager.exportReportToXmlFile(java.lang.String sourceFileName,
boolean isEmbeddingImages)
Exports the generated report file specified by the parameter into XML format. |
static void |
JasperExportManager.exportReportToXmlFile(java.lang.String sourceFileName,
java.lang.String destFileName,
boolean isEmbeddingImages)
Exports the generated report file specified by the first parameter into XML format, placing the result into the second file parameter. |
static void |
JasperExportManager.exportReportToXmlStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream)
Exports the generated report object read from the supplied input stream into XML format, and writes the result to the output stream specified by the second parameter. |
static void |
JasperExportManager.exportReportToXmlStream(JasperPrint jasperPrint,
java.io.OutputStream outputStream)
Exports the generated report object supplied as the first parameter into XML format, and writes the result to the output stream specified by the second parameter. |
static JasperPrint |
JasperFillManager.fillReport(java.io.InputStream inputStream,
java.util.Map parameters,
java.sql.Connection connection)
Fills the compiled report design loaded from the supplied input stream and returns the generated report object. |
static JasperPrint |
JasperManager.fillReport(java.io.InputStream inputStream,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperFillManager.fillReport(InputStream, Map, Connection). |
static JasperPrint |
JasperFillManager.fillReport(java.io.InputStream inputStream,
java.util.Map parameters,
JRDataSource dataSource)
Fills the compiled report design loaded from the supplied input stream and returns the generated report object. |
static JasperPrint |
JasperManager.fillReport(java.io.InputStream inputStream,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperFillManager.fillReport(InputStream, Map, JRDataSource). |
static JasperPrint |
JasperFillManager.fillReport(JasperReport jasperReport,
java.util.Map parameters,
java.sql.Connection connection)
Fills the compiled report design supplied as the first parameter and returns the generated report object. |
static JasperPrint |
JasperManager.fillReport(JasperReport jasperReport,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperFillManager.fillReport(JasperReport, Map, Connection). |
static JasperPrint |
JasperFillManager.fillReport(JasperReport jasperReport,
java.util.Map parameters,
JRDataSource dataSource)
Fills the compiled report design supplied as the first parameter and returns the generated report object. |
static JasperPrint |
JasperManager.fillReport(JasperReport jasperReport,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperFillManager.fillReport(JasperReport, Map, JRDataSource). |
static JasperPrint |
JasperFillManager.fillReport(java.lang.String sourceFileName,
java.util.Map parameters,
java.sql.Connection connection)
Fills the compiled report design loaded from the specified file and returns the generated report object. |
static JasperPrint |
JasperManager.fillReport(java.lang.String sourceFileName,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperFillManager.fillReport(String, Map, Connection). |
static JasperPrint |
JasperFillManager.fillReport(java.lang.String sourceFileName,
java.util.Map parameters,
JRDataSource dataSource)
Fills the compiled report design loaded from the specified file and returns the generated report object. |
static JasperPrint |
JasperManager.fillReport(java.lang.String sourceFileName,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperFillManager.fillReport(String, Map, JRDataSource). |
static void |
JasperFillManager.fillReportToFile(JasperReport jasperReport,
java.lang.String destFileName,
java.util.Map parameters,
java.sql.Connection connection)
Fills the compiled report design received as the first parameter and places the result in the file specified by the second parameter. |
static void |
JasperManager.fillReportToFile(JasperReport jasperReport,
java.lang.String destFileName,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperFillManager.fillReportToFile(JasperReport, String, Map, Connection). |
static void |
JasperFillManager.fillReportToFile(JasperReport jasperReport,
java.lang.String destFileName,
java.util.Map parameters,
JRDataSource dataSource)
Fills the compiled report design received as the first parameter and places the result in the file specified by the second parameter. |
static void |
JasperManager.fillReportToFile(JasperReport jasperReport,
java.lang.String destFileName,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperFillManager.fillReportToFile(JasperReport, String, Map, JRDataSource). |
static java.lang.String |
JasperFillManager.fillReportToFile(java.lang.String sourceFileName,
java.util.Map parameters,
java.sql.Connection connection)
Fills the compiled report design loaded from the specified file. |
static java.lang.String |
JasperManager.fillReportToFile(java.lang.String sourceFileName,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperFillManager.fillReportToFile(String, Map, Connection). |
static java.lang.String |
JasperFillManager.fillReportToFile(java.lang.String sourceFileName,
java.util.Map parameters,
JRDataSource dataSource)
Fills the compiled report design loaded from the specified file. |
static java.lang.String |
JasperManager.fillReportToFile(java.lang.String sourceFileName,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperFillManager.fillReportToFile(String, Map, JRDataSource). |
static void |
JasperFillManager.fillReportToFile(java.lang.String sourceFileName,
java.lang.String destFileName,
java.util.Map parameters,
java.sql.Connection connection)
Fills the compiled report design loaded from the file received as the first parameter and places the result in the file specified by the second parameter. |
static void |
JasperManager.fillReportToFile(java.lang.String sourceFileName,
java.lang.String destFileName,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperFillManager.fillReportToFile(String, String, Map, Connection). |
static void |
JasperFillManager.fillReportToFile(java.lang.String sourceFileName,
java.lang.String destFileName,
java.util.Map parameters,
JRDataSource dataSource)
Fills the compiled report design loaded from the file received as the first parameter and places the result in the file specified by the second parameter. |
static void |
JasperManager.fillReportToFile(java.lang.String sourceFileName,
java.lang.String destFileName,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperFillManager.fillReportToFile(String, String, Map, JRDataSource). |
static void |
JasperFillManager.fillReportToStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream,
java.util.Map parameters,
java.sql.Connection connection)
Fills the compiled report design loaded from the supplied input stream and writes the generated report object to the output stream specified by the second parameter. |
static void |
JasperManager.fillReportToStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperFillManager.fillReportToStream(InputStream, OutputStream, Map, Connection). |
static void |
JasperFillManager.fillReportToStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream,
java.util.Map parameters,
JRDataSource dataSource)
Fills the compiled report design loaded from the supplied input stream and writes the generated report object to the output stream specified by the second parameter. |
static void |
JasperManager.fillReportToStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperFillManager.fillReportToStream(InputStream, OutputStream, Map, JRDataSource). |
static void |
JasperFillManager.fillReportToStream(JasperReport jasperReport,
java.io.OutputStream outputStream,
java.util.Map parameters,
java.sql.Connection connection)
Fills the compiled report design supplied as the first parameter and writes the generated report object to the output stream specified by the second parameter. |
static void |
JasperManager.fillReportToStream(JasperReport jasperReport,
java.io.OutputStream outputStream,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperFillManager.fillReportToStream(JasperReport, OutputStream, Map, Connection). |
static void |
JasperFillManager.fillReportToStream(JasperReport jasperReport,
java.io.OutputStream outputStream,
java.util.Map parameters,
JRDataSource dataSource)
Fills the compiled report design supplied as the first parameter and writes the generated report object to the output stream specified by the second parameter. |
static void |
JasperManager.fillReportToStream(JasperReport jasperReport,
java.io.OutputStream outputStream,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperFillManager.fillReportToStream(JasperReport, OutputStream, Map, JRDataSource). |
java.awt.geom.Dimension2D |
JRRenderable.getDimension()
|
java.awt.geom.Dimension2D |
JRImageRenderer.getDimension()
|
JRField[] |
JRDataSourceProvider.getFields(JasperReport report)
Returns the fields that are available from the data source. |
java.lang.Object |
JRDataSource.getFieldValue(JRField jrField)
Gets the field value for the current position. |
java.lang.Object |
JRResultSetDataSource.getFieldValue(JRField field)
|
java.awt.Image |
JRImageRenderer.getImage()
|
byte[] |
JRRenderable.getImageData()
|
byte[] |
JRAbstractSvgRenderer.getImageData()
|
byte[] |
JRImageRenderer.getImageData()
|
static JRRenderable |
JRImageRenderer.getInstance(java.io.File file,
byte onErrorType)
|
static JRRenderable |
JRImageRenderer.getInstance(java.awt.Image img,
byte onErrorType)
|
static JRRenderable |
JRImageRenderer.getInstance(java.io.InputStream is,
byte onErrorType)
|
static JRRenderable |
JRImageRenderer.getInstance(java.lang.String imageLocation)
|
static JRRenderable |
JRImageRenderer.getInstance(java.lang.String imageLocation,
byte onErrorType)
|
static JRRenderable |
JRImageRenderer.getInstance(java.lang.String imageLocation,
byte onErrorType,
boolean isLazy)
|
static JRRenderable |
JRImageRenderer.getInstance(java.lang.String imageLocation,
byte onErrorType,
boolean isLazy,
java.lang.ClassLoader classLoader)
|
static JRRenderable |
JRImageRenderer.getInstance(java.net.URL url,
byte onErrorType)
|
static JasperDesign |
JasperManager.loadDesign(java.io.InputStream inputStream)
Deprecated. Use JRLoader.loadObject(InputStream) with the appropriate cast. |
static JasperDesign |
JasperManager.loadDesign(java.lang.String fileName)
Deprecated. Use JRLoader.loadObject(String) with the appropriate cast. |
static JasperPrint |
JasperManager.loadPrint(java.io.InputStream inputStream)
Deprecated. Use JRLoader.loadObject(InputStream) with the appropriate cast. |
static JasperPrint |
JasperManager.loadPrint(java.lang.String fileName)
Deprecated. Use JRLoader.loadObject(String) with the appropriate cast. |
static JasperReport |
JasperManager.loadReport(java.io.InputStream inputStream)
Deprecated. Use JRLoader.loadObject(InputStream) with the appropriate cast. |
static JasperReport |
JasperManager.loadReport(java.lang.String fileName)
Deprecated. Use JRLoader.loadObject(String) with the appropriate cast. |
static JasperDesign |
JasperManager.loadXmlDesign(java.io.InputStream inputStream)
Deprecated. Use JRXmlLoader.load(InputStream) instead. |
static JasperDesign |
JasperManager.loadXmlDesign(java.lang.String fileName)
Deprecated. Use JRXmlLoader.load(String) instead. |
void |
JRRewindableDataSource.moveFirst()
Moves back to the first element in the data source. |
boolean |
JRDataSource.next()
Tries to position the cursor on the next element in the data source. |
boolean |
JRResultSetDataSource.next()
|
static boolean |
JasperManager.printPage(java.io.InputStream inputStream,
int pageIndex,
boolean withPrintDialog)
Deprecated. Replaced by JasperPrintManager.printPage(InputStream, int, boolean). |
static boolean |
JasperPrintManager.printPage(java.io.InputStream inputStream,
int pageIndex,
boolean withPrintDialog)
|
static boolean |
JasperManager.printPage(JasperPrint jasperPrint,
int pageIndex,
boolean withPrintDialog)
Deprecated. Replaced by JasperPrintManager.printPage(JasperPrint, int, boolean). |
static boolean |
JasperPrintManager.printPage(JasperPrint jasperPrint,
int pageIndex,
boolean withPrintDialog)
|
static boolean |
JasperManager.printPage(java.lang.String sourceFileName,
int pageIndex,
boolean withPrintDialog)
Deprecated. Replaced by JasperPrintManager.printPage(String, int, boolean). |
static boolean |
JasperPrintManager.printPage(java.lang.String sourceFileName,
int pageIndex,
boolean withPrintDialog)
|
static boolean |
JasperManager.printPages(java.io.InputStream inputStream,
int firstPageIndex,
int lastPageIndex,
boolean withPrintDialog)
Deprecated. Replaced by JasperPrintManager.printPages(InputStream, int, int, boolean). |
static boolean |
JasperPrintManager.printPages(java.io.InputStream inputStream,
int firstPageIndex,
int lastPageIndex,
boolean withPrintDialog)
|
static boolean |
JasperManager.printPages(JasperPrint jasperPrint,
int firstPageIndex,
int lastPageIndex,
boolean withPrintDialog)
Deprecated. Replaced by JasperPrintManager.printPages(JasperPrint, int, int, boolean). |
static boolean |
JasperPrintManager.printPages(JasperPrint jasperPrint,
int firstPageIndex,
int lastPageIndex,
boolean withPrintDialog)
|
static boolean |
JasperManager.printPages(java.lang.String sourceFileName,
int firstPageIndex,
int lastPageIndex,
boolean withPrintDialog)
Deprecated. Replaced by JasperPrintManager.printPages(String, int, int, boolean). |
static boolean |
JasperPrintManager.printPages(java.lang.String sourceFileName,
int firstPageIndex,
int lastPageIndex,
boolean withPrintDialog)
|
static java.awt.Image |
JasperManager.printPageToImage(java.io.InputStream inputStream,
int pageIndex,
float zoom)
Deprecated. Replaced by JasperPrintManager.printPageToImage(InputStream, int, float). |
static java.awt.Image |
JasperPrintManager.printPageToImage(java.io.InputStream inputStream,
int pageIndex,
float zoom)
|
static java.awt.Image |
JasperManager.printPageToImage(JasperPrint jasperPrint,
int pageIndex,
float zoom)
Deprecated. Replaced by JasperPrintManager.printPageToImage(JasperPrint, int, float). |
static java.awt.Image |
JasperPrintManager.printPageToImage(JasperPrint jasperPrint,
int pageIndex,
float zoom)
|
static java.awt.Image |
JasperManager.printPageToImage(java.lang.String sourceFileName,
int pageIndex,
float zoom)
Deprecated. Replaced by JasperPrintManager.printPageToImage(String, int, float). |
static java.awt.Image |
JasperPrintManager.printPageToImage(java.lang.String sourceFileName,
int pageIndex,
float zoom)
|
static boolean |
JasperManager.printReport(java.io.InputStream inputStream,
boolean withPrintDialog)
Deprecated. Replaced by JasperPrintManager.printReport(InputStream, boolean). |
static boolean |
JasperPrintManager.printReport(java.io.InputStream inputStream,
boolean withPrintDialog)
|
static boolean |
JasperManager.printReport(JasperPrint jasperPrint,
boolean withPrintDialog)
Deprecated. Replaced by JasperPrintManager.printReport(JasperPrint, boolean). |
static boolean |
JasperPrintManager.printReport(JasperPrint jasperPrint,
boolean withPrintDialog)
|
static boolean |
JasperManager.printReport(java.lang.String sourceFileName,
boolean withPrintDialog)
Deprecated. Replaced by JasperPrintManager.printReport(String, boolean). |
static boolean |
JasperPrintManager.printReport(java.lang.String sourceFileName,
boolean withPrintDialog)
|
static byte[] |
JasperManager.printReportToPdf(JasperPrint jasperPrint)
Deprecated. Replaced by JasperExportManager.exportReportToPdf(JasperPrint). |
static byte[] |
JasperPrintManager.printReportToPdf(JasperPrint jasperPrint)
Deprecated. Replaced by JasperExportManager.exportReportToPdf(JasperPrint). |
static void |
JasperManager.printReportToPdfFile(JasperPrint jasperPrint,
java.lang.String destFileName)
Deprecated. Replaced by JasperExportManager.exportReportToPdfFile(JasperPrint, String). |
static void |
JasperPrintManager.printReportToPdfFile(JasperPrint jasperPrint,
java.lang.String destFileName)
Deprecated. Replaced by JasperExportManager.exportReportToPdfFile(JasperPrint, String). |
static java.lang.String |
JasperManager.printReportToPdfFile(java.lang.String sourceFileName)
Deprecated. Replaced by JasperExportManager.exportReportToPdfFile(String). |
static java.lang.String |
JasperPrintManager.printReportToPdfFile(java.lang.String sourceFileName)
Deprecated. Replaced by JasperExportManager.exportReportToPdfFile(String). |
static void |
JasperManager.printReportToPdfFile(java.lang.String sourceFileName,
java.lang.String destFileName)
Deprecated. Replaced by JasperExportManager.exportReportToPdfFile(String, String). |
static void |
JasperPrintManager.printReportToPdfFile(java.lang.String sourceFileName,
java.lang.String destFileName)
Deprecated. Replaced by JasperExportManager.exportReportToPdfFile(String, String). |
static void |
JasperManager.printReportToPdfStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream)
Deprecated. Replaced by JasperExportManager.exportReportToPdfStream(InputStream, OutputStream). |
static void |
JasperPrintManager.printReportToPdfStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream)
Deprecated. Replaced by JasperExportManager.exportReportToPdfStream(InputStream, OutputStream). |
static void |
JasperManager.printReportToPdfStream(JasperPrint jasperPrint,
java.io.OutputStream outputStream)
Deprecated. Replaced by JasperExportManager.exportReportToPdfStream(JasperPrint, OutputStream). |
static void |
JasperPrintManager.printReportToPdfStream(JasperPrint jasperPrint,
java.io.OutputStream outputStream)
Deprecated. Replaced by JasperExportManager.exportReportToPdfStream(JasperPrint, OutputStream). |
static java.lang.String |
JasperPrintManager.printReportToXml(JasperPrint jasperPrint)
Deprecated. Replaced by JasperExportManager.exportReportToXml(JasperPrint). |
static void |
JasperPrintManager.printReportToXmlFile(JasperPrint jasperPrint,
java.lang.String destFileName,
boolean isEmbeddingImages)
Deprecated. Replaced by JasperExportManager.exportReportToXmlFile(JasperPrint, String, boolean). |
static java.lang.String |
JasperPrintManager.printReportToXmlFile(java.lang.String sourceFileName,
boolean isEmbeddingImages)
Deprecated. Replaced by JasperExportManager.exportReportToXmlFile(String, boolean). |
static void |
JasperPrintManager.printReportToXmlFile(java.lang.String sourceFileName,
java.lang.String destFileName,
boolean isEmbeddingImages)
Deprecated. Replaced by JasperExportManager.exportReportToXmlFile(String, String, boolean). |
static void |
JasperPrintManager.printReportToXmlStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream)
Deprecated. Replaced by JasperExportManager.exportReportToXmlStream(InputStream, OutputStream). |
static void |
JasperPrintManager.printReportToXmlStream(JasperPrint jasperPrint,
java.io.OutputStream outputStream)
Deprecated. Replaced by JasperExportManager.exportReportToXmlStream(JasperPrint, OutputStream). |
void |
JRRenderable.render(java.awt.Graphics2D grx,
java.awt.geom.Rectangle2D rectanle)
|
void |
JRWrappingSvgRenderer.render(java.awt.Graphics2D grx,
java.awt.geom.Rectangle2D rectangle)
|
void |
JRImageRenderer.render(java.awt.Graphics2D grx,
java.awt.geom.Rectangle2D rectanle)
|
static java.lang.String |
JasperRunManager.runReportToHtmlFile(java.lang.String sourceFileName,
java.util.Map parameters,
java.sql.Connection conn)
Fills a report and saves it directly into a HTML file. |
static java.lang.String |
JasperRunManager.runReportToHtmlFile(java.lang.String sourceFileName,
java.util.Map parameters,
JRDataSource jrDataSource)
Fills a report and saves it directly into a HTML file. |
static void |
JasperRunManager.runReportToHtmlFile(java.lang.String sourceFileName,
java.lang.String destFileName,
java.util.Map parameters,
java.sql.Connection conn)
Fills a report and saves it directly into a HTML file. |
static void |
JasperRunManager.runReportToHtmlFile(java.lang.String sourceFileName,
java.lang.String destFileName,
java.util.Map parameters,
JRDataSource jrDataSource)
Fills a report and saves it directly into a HTML file. |
static byte[] |
JasperManager.runReportToPdf(java.io.InputStream inputStream,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperRunManager.runReportToPdf(InputStream, Map, Connection). |
static byte[] |
JasperRunManager.runReportToPdf(java.io.InputStream inputStream,
java.util.Map parameters,
java.sql.Connection conn)
Fills a report and returns byte array object containing the report in PDF format. |
static byte[] |
JasperManager.runReportToPdf(java.io.InputStream inputStream,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperRunManager.runReportToPdf(InputStream, Map, JRDataSource). |
static byte[] |
JasperRunManager.runReportToPdf(java.io.InputStream inputStream,
java.util.Map parameters,
JRDataSource jrDataSource)
Fills a report and returns byte array object containing the report in PDF format. |
static byte[] |
JasperManager.runReportToPdf(JasperReport jasperReport,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperRunManager.runReportToPdf(JasperReport, Map, Connection). |
static byte[] |
JasperRunManager.runReportToPdf(JasperReport jasperReport,
java.util.Map parameters,
java.sql.Connection conn)
Fills a report and returns byte array object containing the report in PDF format. |
static byte[] |
JasperManager.runReportToPdf(JasperReport jasperReport,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperRunManager.runReportToPdf(JasperReport, Map, JRDataSource). |
static byte[] |
JasperRunManager.runReportToPdf(JasperReport jasperReport,
java.util.Map parameters,
JRDataSource jrDataSource)
Fills a report and returns byte array object containing the report in PDF format. |
static byte[] |
JasperManager.runReportToPdf(java.lang.String sourceFileName,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperRunManager.runReportToPdf(String, Map, Connection). |
static byte[] |
JasperRunManager.runReportToPdf(java.lang.String sourceFileName,
java.util.Map parameters,
java.sql.Connection conn)
Fills a report and returns byte array object containing the report in PDF format. |
static byte[] |
JasperManager.runReportToPdf(java.lang.String sourceFileName,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperRunManager.runReportToPdf(String, Map, JRDataSource). |
static byte[] |
JasperRunManager.runReportToPdf(java.lang.String sourceFileName,
java.util.Map parameters,
JRDataSource jrDataSource)
Fills a report and sends it to an output stream in PDF format. |
static void |
JasperManager.runReportToPdfFile(java.lang.String sourceFileName,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperRunManager.runReportToPdfFile(String, Map, Connection). |
static java.lang.String |
JasperRunManager.runReportToPdfFile(java.lang.String sourceFileName,
java.util.Map parameters,
java.sql.Connection conn)
Fills a report and saves it directly into a PDF file. |
static void |
JasperManager.runReportToPdfFile(java.lang.String sourceFileName,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperRunManager.runReportToPdfFile(String, Map, JRDataSource). |
static java.lang.String |
JasperRunManager.runReportToPdfFile(java.lang.String sourceFileName,
java.util.Map parameters,
JRDataSource jrDataSource)
Fills a report and saves it directly into a PDF file. |
static void |
JasperManager.runReportToPdfFile(java.lang.String sourceFileName,
java.lang.String destFileName,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperRunManager.runReportToPdfFile(String, String, Map, Connection). |
static void |
JasperRunManager.runReportToPdfFile(java.lang.String sourceFileName,
java.lang.String destFileName,
java.util.Map parameters,
java.sql.Connection conn)
Fills a report and saves it directly into a PDF file. |
static void |
JasperManager.runReportToPdfFile(java.lang.String sourceFileName,
java.lang.String destFileName,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperRunManager.runReportToPdfFile(String, String, Map, JRDataSource). |
static void |
JasperRunManager.runReportToPdfFile(java.lang.String sourceFileName,
java.lang.String destFileName,
java.util.Map parameters,
JRDataSource jrDataSource)
Fills a report and saves it directly into a PDF file. |
static void |
JasperManager.runReportToPdfStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperRunManager.runReportToPdfStream(InputStream, OutputStream, Map, Connection). |
static void |
JasperRunManager.runReportToPdfStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream,
java.util.Map parameters,
java.sql.Connection conn)
Fills a report and sends it directly to an OutputStream in PDF format. |
static void |
JasperManager.runReportToPdfStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperRunManager.runReportToPdfStream(InputStream, OutputStream, Map, JRDataSource). |
static void |
JasperRunManager.runReportToPdfStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream,
java.util.Map parameters,
JRDataSource jrDataSource)
Fills a report and sends it directly to an OutputStream in PDF format. |
protected void |
JRAbstractExporter.setInput()
|
protected void |
JRAbstractExporter.setPageRange()
|
static void |
JasperCompileManager.writeReportToXmlFile(JRReport report,
java.lang.String destFileName)
Generates the XML representation of the report design supplied as the first parameter and place it in the file specified by the second parameter. |
static java.lang.String |
JasperCompileManager.writeReportToXmlFile(java.lang.String sourceFileName)
Generates the XML representation of the report design loaded from the specified filename. |
static void |
JasperCompileManager.writeReportToXmlFile(java.lang.String sourceFileName,
java.lang.String destFileName)
Generates the XML representation of the report design loaded from the first file parameter and place it in the file specified by the second parameter. |
static void |
JasperCompileManager.writeReportToXmlStream(java.io.InputStream inputStream,
java.io.OutputStream outputStream)
Generates the XML representation of the serialized report design object read from the supplied input stream abd writes it to the specified output stream, using the "UTF-8" encoding. |
static void |
JasperCompileManager.writeReportToXmlStream(JRReport report,
java.io.OutputStream outputStream)
Generates the XML representation of the report design object supplied as parameter and writes it to the specified output stream, using the "UTF-8" encoding. |
| Uses of JRException in net.sf.jasperreports.engine.data |
|---|
| Methods in net.sf.jasperreports.engine.data that throw JRException | |
|---|---|
JRXmlDataSource |
JRXmlDataSource.dataSource()
Creates a sub data source using as root document the document used by "this" data source. |
JRXmlDataSource |
JRXmlDataSource.dataSource(java.lang.String selectExpr)
Creates a sub data source using as root document the document used by "this" data source. |
JRField[] |
JRAbstractBeanDataSourceProvider.getFields(JasperReport report)
|
java.lang.Object |
JRTableModelDataSource.getFieldValue(JRField jrField)
|
java.lang.Object |
JRBeanArrayDataSource.getFieldValue(JRField field)
|
java.lang.Object |
JRBeanCollectionDataSource.getFieldValue(JRField field)
|
java.lang.Object |
JRXmlDataSource.getFieldValue(JRField jrField)
|
void |
JRXmlDataSource.moveFirst()
|
JRXmlDataSource |
JRXmlDataSource.subDataSource()
Creates a sub data source using the current node (record) as the root of the document. |
JRXmlDataSource |
JRXmlDataSource.subDataSource(java.lang.String selectExpr)
Creates a sub data source using the current node (record) as the root of the document. |
| Constructors in net.sf.jasperreports.engine.data that throw JRException | |
|---|---|
JRXmlDataSource(org.w3c.dom.Document document)
Creates the data source by parsing the xml document from the given file. |
|
JRXmlDataSource(org.w3c.dom.Document document,
java.lang.String selectExpression)
Creates the data source by parsing the xml document from the given file. |
|
JRXmlDataSource(java.io.File file)
Creates the data source by parsing the xml document from the given file. |
|
JRXmlDataSource(java.io.File file,
java.lang.String selectExpression)
Creates the data source by parsing the xml document from the given file. |
|
JRXmlDataSource(java.io.InputStream in)
Creates the data source by parsing the xml document from the given input stream. |
|
JRXmlDataSource(java.io.InputStream in,
java.lang.String selectExpression)
Creates the data source by parsing the xml document from the given input stream. |
|
JRXmlDataSource(java.lang.String uri)
Creates the data source by parsing the xml document from the given system identifier (URI). |
|
JRXmlDataSource(java.lang.String uri,
java.lang.String selectExpression)
Creates the data source by parsing the xml document from the given system identifier (URI). |
|
| Uses of JRException in net.sf.jasperreports.engine.design |
|---|
| Methods in net.sf.jasperreports.engine.design that throw JRException | |
|---|---|
void |
JasperDesign.addField(JRField field)
|
void |
JasperDesign.addFont(JRReportFont reportFont)
Adds a report font, that can be referenced by text elements. |
void |
JasperDesign.addGroup(JRDesignGroup group)
Adds a new group to the report design. |
void |
JasperDesign.addParameter(JRParameter parameter)
Adds a report parameter. |
void |
JRDesignSubreport.addParameter(JRSubreportParameter subreportParameter)
|
void |
JasperDesign.addVariable(JRDesignVariable variable)
|
java.lang.String |
JRClassCompiler.compileClass(java.io.File sourceFile,
java.lang.String classpath)
|
java.lang.String |
JRJdk13Compiler.compileClass(java.io.File sourceFile,
java.lang.String classpath)
|
java.lang.String |
JRJavacCompiler.compileClass(java.io.File sourceFile,
java.lang.String classpath)
|
java.lang.String |
JRJikesCompiler.compileClass(java.io.File sourceFile,
java.lang.String classpath)
|
java.lang.String |
JRJdk12Compiler.compileClass(java.io.File sourceFile,
java.lang.String classpath)
|
JasperReport |
JRDefaultCompiler.compileReport(JasperDesign jasperDesign)
|
JasperReport |
JRAbstractClassCompiler.compileReport(JasperDesign jasperDesign)
|
JasperReport |
JRCompiler.compileReport(JasperDesign jasperDesign)
|
JasperReport |
JRJdtCompiler.compileReport(JasperDesign jasperDesign)
|
protected java.lang.String |
JRClassGenerator.generateClass()
|
static java.lang.String |
JRClassGenerator.generateClass(JasperDesign jrDesign)
|
protected void |
JRClassGenerator.generateInitMethod(java.lang.StringBuffer sb)
|
JRCalculator |
JRDefaultCompiler.loadCalculator(JasperReport jasperReport)
|
JRCalculator |
JRAbstractJavaCompiler.loadCalculator(JasperReport jasperReport)
|
JRCalculator |
JRCompiler.loadCalculator(JasperReport jasperReport)
|
| Uses of JRException in net.sf.jasperreports.engine.export |
|---|
| Methods in net.sf.jasperreports.engine.export that throw JRException | |
|---|---|
protected abstract void |
JRXlsAbstractExporter.addBlankCell(int colIndex,
int rowIndex)
|
protected void |
JRXlsExporter.closeWorkbook(java.io.OutputStream os)
|
protected abstract void |
JRXlsAbstractExporter.closeWorkbook(java.io.OutputStream os)
|
protected void |
JRRtfExporter.createColorAndFontEntries()
Create color and font entries for the header of .rtf file. |
protected void |
JRRtfExporter.exportImage(JRPrintImage printImage)
Export a image object |
protected void |
JRGraphics2DExporter.exportImage(JRPrintImage printImage)
|
protected void |
JRXmlExporter.exportImage(JRPrintImage image)
|
protected void |
JRPdfExporter.exportImage(JRPrintImage printImage)
|
protected void |
JRHtmlExporter.exportImage(JRPrintImage image,
JRExporterGridCell gridCell)
|
protected abstract void |
JRXlsAbstractExporter.exportImage(JRPrintImage image,
JRExporterGridCell cell,
int colIndex,
int rowIndex)
|
protected abstract void |
JRXlsAbstractExporter.exportLine(JRPrintLine line,
JRExporterGridCell cell,
int colIndex,
int rowIndex)
|
protected void |
JRHtmlExporter.exportPage(JRPrintPage page)
|
protected void |
JRGraphics2DExporter.exportPage(JRPrintPage page)
|
protected void |
JRXmlExporter.exportPage(JRPrintPage page)
|
protected void |
JRPdfExporter.exportPage(JRPrintPage page)
|
protected void |
JRRtfExporter.exportPage(JRPrintPage page,
boolean lastPage)
Exports a report page |
protected void |
JRXlsAbstractExporter.exportPage(JRPrintPage alterYPage,
JRPrintPage page)
|
protected abstract void |
JRXlsAbstractExporter.exportRectangle(JRPrintElement element,
JRExporterGridCell cell,
int colIndex,
int rowIndex)
|
void |
JRPrintServiceExporter.exportReport()
|
void |
JRHtmlExporter.exportReport()
|
void |
JRRtfExporter.exportReport()
Export report in .rtf format |
void |
JRXlsAbstractExporter.exportReport()
|
void |
JRGraphics2DExporter.exportReport()
|
void |
JRCsvExporter.exportReport()
|
void |
JRXmlExporter.exportReport()
|
void |
JRTextExporter.exportReport()
|
void |
JRPdfExporter.exportReport()
|
protected java.lang.StringBuffer |
JRRtfExporter.exportReportToBuffer()
Export report in .rtf format |
protected java.lang.StringBuffer |
JRXmlExporter.exportReportToBuffer()
|
protected void |
JRRtfExporter.exportReportToFile()
Export report to a file in the .rtf format |
protected void |
JRXmlExporter.exportReportToFile()
|
void |
JRGraphics2DExporter.exportReportToGraphics2D()
|
protected void |
JRRtfExporter.exportReportToStream()
Export report in .rtf format to a stream |
protected void |
JRXmlExporter.exportReportToStream()
|
protected void |
JRXlsAbstractExporter.exportReportToStream(java.io.OutputStream os)
|
protected void |
JRPdfExporter.exportReportToStream(java.io.OutputStream os)
|
protected void |
JRHtmlExporter.exportReportToWriter()
|
protected void |
JRCsvExporter.exportReportToWriter()
|
protected void |
JRTextExporter.exportReportToWriter()
|
protected void |
JRRtfExporter.exportText(JRPrintText text)
Draw a text box |
protected void |
JRPdfExporter.exportText(JRPrintText text)
|
protected abstract void |
JRXlsAbstractExporter.exportText(JRPrintText text,
JRExporterGridCell cell,
int colIndex,
int rowIndex)
|
protected com.lowagie.text.Chunk |
JRPdfExporter.getChunk(java.util.Map attributes,
java.lang.String text)
|
protected com.lowagie.text.Phrase |
JRPdfExporter.getPhrase(JRStyledText styledText,
JRPrintText textElement)
|
protected void |
JRHtmlExporter.loadPxImage()
|
protected abstract void |
JRXlsAbstractExporter.openWorkbook(java.io.OutputStream os)
|
protected abstract void |
JRXlsAbstractExporter.setRowHeight(int rowIndex,
int lastRowHeight)
|
| Constructors in net.sf.jasperreports.engine.export that throw JRException | |
|---|---|
JRGraphics2DExporter()
|
|
| Uses of JRException in net.sf.jasperreports.engine.fill |
|---|
| Subclasses of JRException in net.sf.jasperreports.engine.fill | |
|---|---|
class |
JRExpressionEvalException
|
| Methods in net.sf.jasperreports.engine.fill that throw JRException | |
|---|---|
void |
JRCalculator.calculateVariables()
|
void |
JRBaseFiller.cancelFill()
Cancells the fill process. |
void |
AsynchronousFillHandle.cancellFill()
Cancels the fill started by the handle. |
static JRBaseFiller |
JRFiller.createFiller(JasperReport jasperReport)
|
static AsynchronousFillHandle |
AsynchronousFillHandle.createHandle(JasperReport jasperReport,
java.util.Map parameters,
java.sql.Connection conn)
Creates an asychronous filling handle. |
static AsynchronousFillHandle |
AsynchronousFillHandle.createHandle(JasperReport jasperReport,
java.util.Map parameters,
JRDataSource dataSource)
Creates an asychronous filling handle. |
protected JRAbstractScriptlet |
JRBaseFiller.createScriptlet()
|
protected abstract void |
JRCalculator.customizedInit(java.util.Map parametersMap,
java.util.Map fieldsMap,
java.util.Map variablesMap)
|
void |
JRCalculator.estimateGroupRuptures()
|
void |
JRCalculator.estimateVariables()
|
protected void |
JRFillBand.evaluate(byte evaluation)
|
protected void |
JRFillChart.evaluate(byte evaluation)
|
protected abstract void |
JRFillElement.evaluate(byte evaluation)
|
protected void |
JRFillImage.evaluate(byte evaluation)
|
protected void |
JRFillStaticText.evaluate(byte evaluation)
|
protected void |
JRFillRectangle.evaluate(byte evaluation)
|
protected void |
JRFillSubreport.evaluate(byte evaluation)
|
protected void |
JRFillLine.evaluate(byte evaluation)
|
protected void |
JRFillTextField.evaluate(byte evaluation)
|
protected void |
JRFillEllipse.evaluate(byte evaluation)
|
protected java.lang.Object |
JRCalculator.evaluate(JRExpression expression,
byte evaluationType)
|
protected org.jfree.chart.JFreeChart |
JRFillChart.evaluateAreaImage(byte evaluation)
|
protected org.jfree.chart.JFreeChart |
JRFillChart.evaluateBar3DImage(byte evaluation)
|
protected org.jfree.chart.JFreeChart |
JRFillChart.evaluateBarImage(byte evaluation)
|
protected org.jfree.chart.JFreeChart |
JRFillChart.evaluateBubbleImage(byte evaluation)
|
protected org.jfree.chart.JFreeChart |
JRFillChart.evaluateCandlestickImage(byte evaluation)
|
protected java.lang.Object |
JRFillChart.evaluateExpression(JRExpression expression,
byte evaluation)
|
protected org.jfree.chart.JFreeChart |
JRFillChart.evaluateHighLowImage(byte evaluation)
|
protected void |
JRFillChart.evaluateImage(byte evaluation)
|
protected void |
JRFillImage.evaluateImage(byte evaluation)
|
protected org.jfree.chart.JFreeChart |
JRFillChart.evaluateLineImage(byte evaluation)
|
protected org.jfree.chart.JFreeChart |
JRFillChart.evaluatePie3DImage(byte evaluation)
|
protected org.jfree.chart.JFreeChart |
JRFillChart.evaluatePieImage(byte evaluation)
|
protected void |
JRFillBand.evaluatePrintWhenExpression(byte evaluation)
|
protected void |
JRFillElement.evaluatePrintWhenExpression(byte evaluation)
|
protected org.jfree.chart.JFreeChart |
JRFillChart.evaluateScatterImage(byte evaluation)
|
protected org.jfree.chart.JFreeChart |
JRFillChart.evaluateStackedBar3DImage(byte evaluation)
|
protected org.jfree.chart.JFreeChart |
JRFillChart.evaluateStackedBarImage(byte evaluation)
|
protected void |
JRFillTextField.evaluateText(byte evaluation)
|
protected org.jfree.chart.JFreeChart |
JRFillChart.evaluateTimeSeriesImage(byte evaluation)
|
protected org.jfree.chart.JFreeChart |
JRFillChart.evaluateXyAreaImage(byte evaluation)
|
protected org.jfree.chart.JFreeChart |
JRFillChart.evaluateXYBarImage(byte evaluation)
|
protected org.jfree.chart.JFreeChart |
JRFillChart.evaluateXyLineImage(byte evaluation)
|
protected JRPrintBand |
JRFillBand.fill()
|
protected abstract JRPrintElement |
JRFillElement.fill()
|
protected JRPrintBand |
JRFillBand.fill(int availableStretchHeight)
|
protected JRPrintBand |
JRFillBand.fill(int availableStretchHeight,
boolean isOverflowAllowed)
|
JasperPrint |
JRBaseFiller.fill(java.util.Map parameterValues,
java.sql.Connection conn)
|
JasperPrint |
JRBaseFiller.fill(java.util.Map parameterValues,
JRDataSource ds)
|
protected void |
JRVerticalFiller.fillColumnBand(JRFillBand band,
byte evaluation)
|
protected void |
JRHorizontalFiller.fillColumnBand(JRFillBand band,
byte evaluation)
|
protected void |
JRVerticalFiller.fillFixedBand(JRFillBand band,
byte evaluation)
|
protected void |
JRHorizontalFiller.fillFixedBand(JRFillBand band,
byte evaluation)
|
protected void |
JRVerticalFiller.fillPageBand(JRFillBand band,
byte evaluation)
|
protected void |
JRHorizontalFiller.fillPageBand(JRFillBand band,
byte evaluation)
private void fillColumnBreak( byte evalPrevPage, byte evalNextPage ) throws JRException { if (columnIndex == columnCount - 1) { fillPageBreak(false, evalPrevPage, evalNextPage); } else { fillColumnFooter(evalPrevPage); resolveGroupBoundImages(evalPrevPage, false); resolveColumnBoundImages(evalPrevPage); resolveGroupBoundTexts(evalPrevPage, false); resolveColumnBoundTexts(evalPrevPage); scriptlet.callBeforeColumnInit(); calculator.initializeVariables(JRVariable.RESET_TYPE_COLUMN); scriptlet.callAfterColumnInit(); columnIndex += 1; offsetX = leftMargin + columnIndex * (columnSpacing + columnWidth); offsetY = columnHeaderOffsetY; calculator.getColumnNumber().setValue( new Integer(((Number)calculator.getColumnNumber().getValue()).intValue() + 1) ); calculator.getColumnNumber().setOldValue( calculator.getColumnNumber().getValue() ); fillColumnHeader(evalNextPage); } } /** |
protected void |
JRVerticalFiller.fillReport()
|
protected abstract void |
JRBaseFiller.fillReport()
|
protected void |
JRHorizontalFiller.fillReport()
|
static JasperPrint |
JRFiller.fillReport(JasperReport jasperReport,
java.util.Map parameters,
java.sql.Connection conn)
|
static JasperPrint |
JRFiller.fillReport(JasperReport jasperReport,
java.util.Map parameters,
JRDataSource dataSource)
|
protected java.lang.Object |
JRBaseFiller.getVariableValue(java.lang.String variableName)
Returns the value of a variable. |
java.lang.Object |
JRIncrementer.increment(JRFillVariable variable,
java.lang.Object expressionValue,
AbstractValueProvider valueProvider)
|
protected void |
JRCalculator.init(JRBaseFiller parentFiller)
|
void |
JRCalculator.initializeVariables(byte resetType)
|
protected boolean |
JRBaseFiller.next()
|
protected JRPrintBand |
JRFillBand.refill(int availableStretchHeight)
|
protected void |
JRBaseFiller.resolveBandBoundElements(JRFillBand band,
byte evaluation)
Resloves elements which are to be evaluated at band level. |
protected void |
JRBaseFiller.resolveColumnBoundElements(byte evaluation)
Resolves elements which are to be evaluated at column level. |
protected void |
JRFillChart.resolveElement(JRPrintElement element,
byte evaluation)
|
protected abstract void |
JRFillElement.resolveElement(JRPrintElement element,
byte evaluation)
Resolves an element. |
protected void |
JRFillImage.resolveElement(JRPrintElement element,
byte evaluation)
|
protected void |
JRFillTextField.resolveElement(JRPrintElement element,
byte evaluation)
|
protected void |
JRBaseFiller.resolveGroupBoundElements(byte evaluation,
boolean isFinal)
Resolves elements which are to be evaluated at group level. |
protected void |
JRBaseFiller.resolvePageBoundElements(byte evaluation)
Resolves elements which are to be evaluated at page level. |
protected void |
JRBaseFiller.resolveReportBoundElements()
Resolves elements which are to be evaluated at report level. |
protected void |
JRFillBand.rewind()
|
protected abstract void |
JRFillElement.rewind()
|
void |
JRFillSubreport.rewind()
|
protected void |
JRBaseFiller.setParameter(JRFillParameter parameter,
java.lang.Object value)
|
protected void |
JRBaseFiller.setParameters(java.util.Map parameterValues)
|
| Constructors in net.sf.jasperreports.engine.fill that throw JRException | |
|---|---|
AsynchronousFillHandle(JasperReport jasperReport,
java.util.Map parameters,
java.sql.Connection conn)
|
|
AsynchronousFillHandle(JasperReport jasperReport,
java.util.Map parameters,
JRDataSource dataSource)
|
|
JRBaseFiller(JasperReport jasperReport,
JRCalculator initCalculator,
JRBaseFiller parentFiller)
|
|
JRHorizontalFiller(JasperReport jasperReport)
|
|
JRHorizontalFiller(JasperReport jasperReport,
JRBaseFiller parentFiller)
|
|
JRHorizontalFiller(JasperReport jasperReport,
JRCalculator calculator,
JRBaseFiller parentFiller)
|
|
JRVerticalFiller(JasperReport jasperReport)
|
|
JRVerticalFiller(JasperReport jasperReport,
JRBaseFiller parentFiller)
|
|
JRVerticalFiller(JasperReport jasperReport,
JRCalculator calculator,
JRBaseFiller parentFiller)
|
|
| Uses of JRException in net.sf.jasperreports.engine.print |
|---|
| Methods in net.sf.jasperreports.engine.print that throw JRException | |
|---|---|
static boolean |
JRPrinterAWT.printPages(JasperPrint jrPrint,
int firstPageIndex,
int lastPageIndex,
boolean withPrintDialog)
|
static java.awt.Image |
JRPrinterAWT.printPageToImage(JasperPrint jrPrint,
int pageIndex,
float zoom)
|
| Constructors in net.sf.jasperreports.engine.print that throw JRException | |
|---|---|
JRPrinterAWT(JasperPrint jrPrint)
|
|
| Uses of JRException in net.sf.jasperreports.engine.util |
|---|
| Methods in net.sf.jasperreports.engine.util that throw JRException | |
|---|---|
static java.io.InputStream |
JRLoader.getFileInputStream(java.lang.String filename)
Tries to open a file for reading. |
static java.awt.Image |
JRImageLoader.getImage(byte index)
|
static java.io.InputStream |
JRLoader.getLocationInputStream(java.lang.String location)
Tries to open an input stream for a location. |
static java.sql.PreparedStatement |
JRQueryExecuter.getStatement(JRQuery query,
java.util.Map parameters,
java.util.Map values,
java.sql.Connection conn)
|
static java.io.InputStream |
JRLoader.getURLInputStream(java.lang.String spec)
Tries to open an input stream for an URL. |
static void |
JRGraphEnvInitializer.initializeGraphEnv()
|
static byte[] |
JRLoader.loadBytes(java.io.File file)
|
static byte[] |
JRLoader.loadBytes(java.io.InputStream is)
|
static byte[] |
JRLoader.loadBytes(java.net.URL url)
|
static byte[] |
JRLoader.loadBytesFromLocation(java.lang.String location)
|
static byte[] |
JRLoader.loadBytesFromLocation(java.lang.String location,
java.lang.ClassLoader classLoader)
|
static java.awt.Image |
JRImageLoader.loadImage(byte[] bytes)
|
protected static java.awt.Image |
JRImageLoader.loadImage(java.lang.String image)
Loads an image from an specified resource. |
static byte[] |
JRImageLoader.loadImageDataFromAWTImage(java.awt.image.BufferedImage bi)
|
static byte[] |
JRImageLoader.loadImageDataFromAWTImage(java.awt.Image img)
|
static byte[] |
JRImageLoader.loadImageDataFromFile(java.io.File file)
|
static byte[] |
JRImageLoader.loadImageDataFromInputStream(java.io.InputStream is)
|
static byte[] |
JRImageLoader.loadImageDataFromLocation(java.lang.String location)
|
static byte[] |
JRImageLoader.loadImageDataFromLocation(java.lang.String location,
java.lang.ClassLoader classLoader)
|
static byte[] |
JRImageLoader.loadImageDataFromURL(java.net.URL url)
|
static java.lang.Object |
JRLoader.loadObject(java.io.File file)
|
static java.lang.Object |
JRLoader.loadObject(java.io.InputStream is)
|
static java.lang.Object |
JRLoader.loadObject(java.lang.String fileName)
|
static java.lang.Object |
JRLoader.loadObject(java.net.URL url)
|
static java.lang.Object |
JRLoader.loadObjectFromLocation(java.lang.String location)
|
static java.lang.Object |
JRLoader.loadObjectFromLocation(java.lang.String location,
java.lang.ClassLoader classLoader)
|
static java.util.Properties |
JRProperties.loadProperties(java.lang.String name,
java.util.Properties defaults)
Loads a properties file from the classpath. |
static void |
JRSaver.saveClassSource(java.lang.String source,
java.io.File file)
|
static void |
JRImageSaver.saveImageDataToFile(byte[] imageData,
java.io.File file)
|
static void |
JRImageSaver.saveImageDataToOutputStream(byte[] imageData,
java.io.OutputStream os)
|
static void |
JRSaver.saveObject(java.lang.Object obj,
java.io.File file)
|
static void |
JRSaver.saveObject(java.lang.Object obj,
java.io.OutputStream os)
|
static void |
JRSaver.saveObject(java.lang.Object obj,
java.lang.String fileName)
|
| Uses of JRException in net.sf.jasperreports.engine.xml |
|---|
| Methods in net.sf.jasperreports.engine.xml that throw JRException | |
|---|---|
static JasperDesign |
JRXmlLoader.load(java.io.File file)
|
static JasperDesign |
JRXmlLoader.load(java.io.InputStream is)
|
static JasperPrint |
JRPrintXmlLoader.load(java.io.InputStream is)
|
static JasperDesign |
JRXmlLoader.load(java.lang.String sourceFileName)
|
static JasperPrint |
JRPrintXmlLoader.load(java.lang.String sourceFileName)
|
JasperDesign |
JRXmlLoader.loadXML(org.xml.sax.InputSource is)
|
JasperDesign |
JRXmlLoader.loadXML(java.io.InputStream is)
|
void |
JRPrintImageSourceObject.setImageSource(java.lang.String imageSource)
|
static void |
JRXmlWriter.writeReport(JRReport report,
java.io.OutputStream outputStream,
java.lang.String encoding)
|
static void |
JRXmlWriter.writeReport(JRReport report,
java.lang.String destFileName,
java.lang.String encoding)
|
| Uses of JRException in net.sf.jasperreports.view |
|---|
| Methods in net.sf.jasperreports.view that throw JRException | |
|---|---|
void |
JRHyperlinkListener.gotoHyperlink(JRPrintHyperlink hyperlink)
|
protected void |
JRViewer.loadReport(java.io.InputStream is,
boolean isXmlReport)
|
protected void |
JRViewer.loadReport(java.lang.String fileName,
boolean isXmlReport)
|
abstract void |
JRSaveContributor.save(JasperPrint jasperPrint,
java.io.File file)
|
static void |
JasperViewer.viewReport(java.io.InputStream is,
boolean isXMLFile)
|
static void |
JasperViewer.viewReport(java.io.InputStream is,
boolean isXMLFile,
boolean isExitOnClose)
|
static void |
JasperViewer.viewReport(java.lang.String sourceFile,
boolean isXMLFile)
|
static void |
JasperViewer.viewReport(java.lang.String sourceFile,
boolean isXMLFile,
boolean isExitOnClose)
|
static void |
JasperDesignViewer.viewReportDesign(java.io.InputStream is,
boolean isXML)
|
static void |
JasperDesignViewer.viewReportDesign(JRReport report)
|
static void |
JasperDesignViewer.viewReportDesign(java.lang.String sourceFile,
boolean isXML)
|
| Constructors in net.sf.jasperreports.view that throw JRException | |
|---|---|
JasperDesignViewer(java.io.InputStream is,
boolean isXML)
Creates new form JasperDesignViewer |
|
JasperDesignViewer(JRReport report)
Creates new form JasperDesignViewer |
|
JasperDesignViewer(java.lang.String sourceFile,
boolean isXML)
Creates new form JasperDesignViewer |
|
JasperViewer(java.io.InputStream is,
boolean isXMLFile)
Creates new form JasperViewer |
|
JasperViewer(java.io.InputStream is,
boolean isXMLFile,
boolean isExitOnClose)
Creates new form JasperViewer |
|
JasperViewer(java.lang.String sourceFile,
boolean isXMLFile)
Creates new form JasperViewer |
|
JasperViewer(java.lang.String sourceFile,
boolean isXMLFile,
boolean isExitOnClose)
Creates new form JasperViewer |
|
JRDesignViewer(java.io.InputStream is,
boolean isXML)
Creates new form JRDesignViewer |
|
JRDesignViewer(JRReport report)
Creates new form JRDesignViewer |
|
JRDesignViewer(java.lang.String fileName,
boolean isXML)
Creates new form JRDesignViewer |
|
JRViewer(java.io.InputStream is,
boolean isXML)
Creates new form JRViewer |
|
JRViewer(java.lang.String fileName,
boolean isXML)
Creates new form JRViewer |
|
| Uses of JRException in net.sf.jasperreports.view.save |
|---|
| Methods in net.sf.jasperreports.view.save that throw JRException | |
|---|---|
void |
JREmbeddedImagesXmlSaveContributor.save(JasperPrint jasperPrint,
java.io.File file)
|
void |
JRCsvSaveContributor.save(JasperPrint jasperPrint,
java.io.File file)
|
void |
JRHtmlSaveContributor.save(JasperPrint jasperPrint,
java.io.File file)
|
void |
JRXmlSaveContributor.save(JasperPrint jasperPrint,
java.io.File file)
|
void |
JRRtfSaveContributor.save(JasperPrint jasperPrint,
java.io.File file)
|
void |
JRMultipleSheetsXlsSaveContributor.save(JasperPrint jasperPrint,
java.io.File file)
|
void |
JRPdfSaveContributor.save(JasperPrint jasperPrint,
java.io.File file)
|
void |
JRSingleSheetXlsSaveContributor.save(JasperPrint jasperPrint,
java.io.File file)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||