Package | Description |
---|---|
net.sf.jasperreports.components.map |
Contains classes for the built-in Google Map component.
|
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.base |
Contains base implementations for the library's main interfaces.
|
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.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.type |
Contains
enum types used by the library's main classes. |
Modifier and Type | Field and Description |
---|---|
static OnErrorTypeEnum |
MapPrintElement.DEFAULT_ON_ERROR_TYPE |
Modifier and Type | Method and Description |
---|---|
OnErrorTypeEnum |
StandardMapComponent.getOnErrorType() |
OnErrorTypeEnum |
MapComponent.getOnErrorType()
Returns an attribute that customizes the way the engine handles a missing map image
during report generation.
|
Modifier and Type | Method and Description |
---|---|
void |
StandardMapComponent.setOnErrorType(OnErrorTypeEnum onErrorType) |
Modifier and Type | Method and Description |
---|---|
OnErrorTypeEnum |
JRPrintImage.getOnErrorTypeValue() |
OnErrorTypeEnum |
JRImage.getOnErrorTypeValue()
Indicates how the engine will treat a missing image.
|
Modifier and Type | Method and Description |
---|---|
static JRRenderable |
JRImageRenderer.getInstance(java.io.File file,
OnErrorTypeEnum onErrorType)
Deprecated.
Replaced by
RenderableUtil.getRenderable(File, OnErrorTypeEnum) . |
static JRRenderable |
JRImageRenderer.getInstance(java.awt.Image image,
byte imageType,
OnErrorTypeEnum onErrorType)
Deprecated.
|
static JRRenderable |
JRImageRenderer.getInstance(java.awt.Image img,
OnErrorTypeEnum onErrorType)
Deprecated.
Replaced by
RenderableUtil.getRenderable(Image, OnErrorTypeEnum) . |
static JRRenderable |
JRImageRenderer.getInstance(java.io.InputStream is,
OnErrorTypeEnum onErrorType)
Deprecated.
|
static JRRenderable |
JRImageRenderer.getInstance(java.lang.String imageLocation,
OnErrorTypeEnum onErrorType)
Deprecated.
|
static JRRenderable |
JRImageRenderer.getInstance(java.lang.String imageLocation,
OnErrorTypeEnum onErrorType,
boolean isLazy)
Deprecated.
|
static JRRenderable |
JRImageRenderer.getInstance(java.net.URL url,
OnErrorTypeEnum onErrorType)
Deprecated.
Replaced by
RenderableUtil.getRenderable(URL, OnErrorTypeEnum) . |
static JRImageRenderer |
JRImageRenderer.getOnErrorRenderer(OnErrorTypeEnum onErrorType,
JRException e) |
Renderable |
RenderableUtil.getOnErrorRenderer(OnErrorTypeEnum onErrorType,
JRException e) |
static JRImageRenderer |
JRImageRenderer.getOnErrorRenderer(OnErrorTypeEnum onErrorType,
JRRuntimeException e) |
Renderable |
RenderableUtil.getOnErrorRenderer(OnErrorTypeEnum onErrorType,
JRRuntimeException e) |
static JRRenderable |
JRImageRenderer.getOnErrorRendererForDimension(JRRenderable renderer,
OnErrorTypeEnum onErrorType)
Deprecated.
|
Renderable |
RenderableUtil.getOnErrorRendererForDimension(Renderable renderer,
OnErrorTypeEnum onErrorType) |
static JRImageRenderer |
JRImageRenderer.getOnErrorRendererForImage(JasperReportsContext jasperReportsContext,
JRImageRenderer renderer,
OnErrorTypeEnum onErrorType) |
static JRImageRenderer |
JRImageRenderer.getOnErrorRendererForImage(JRImageRenderer renderer,
OnErrorTypeEnum onErrorType)
Deprecated.
|
static JRRenderable |
JRImageRenderer.getOnErrorRendererForImageData(JRRenderable renderer,
OnErrorTypeEnum onErrorType)
Deprecated.
|
Renderable |
RenderableUtil.getOnErrorRendererForImageData(Renderable renderer,
OnErrorTypeEnum onErrorType) |
Renderable |
RenderableUtil.getRenderable(java.io.File file,
OnErrorTypeEnum onErrorType) |
Renderable |
RenderableUtil.getRenderable(java.awt.Image image,
ImageTypeEnum imageType,
OnErrorTypeEnum onErrorType)
Creates and returns an instance of the JRImageRenderer class after encoding the image object using an image
encoder that supports the supplied image type.
|
Renderable |
RenderableUtil.getRenderable(java.awt.Image img,
OnErrorTypeEnum onErrorType) |
Renderable |
RenderableUtil.getRenderable(java.io.InputStream is,
OnErrorTypeEnum onErrorType) |
Renderable |
RenderableUtil.getRenderable(java.lang.String imageLocation,
OnErrorTypeEnum onErrorType) |
Renderable |
RenderableUtil.getRenderable(java.lang.String imageLocation,
OnErrorTypeEnum onErrorType,
boolean isLazy) |
Renderable |
RenderableUtil.getRenderable(java.net.URL url,
OnErrorTypeEnum onErrorType) |
protected Renderable |
RenderableUtil.handleImageError(java.lang.Exception error,
OnErrorTypeEnum onErrorType)
public Renderable getOnErrorRendererForImage(Renderable renderer, OnErrorTypeEnum onErrorType) throws JRException
{
try
{
renderer.getImage();
return renderer;
}
catch (JRException e)
{
return getOnErrorRenderer(onErrorType, e);
}
}
|
void |
JRPrintImage.setOnErrorType(OnErrorTypeEnum onErrorType) |
void |
JRImage.setOnErrorType(OnErrorTypeEnum onErrorTypeEnum)
Specifies how the engine should treat a missing image.
|
Modifier and Type | Field and Description |
---|---|
protected OnErrorTypeEnum |
JRBaseImage.onErrorTypeValue |
protected OnErrorTypeEnum |
JRBasePrintImage.onErrorTypeValue |
Modifier and Type | Method and Description |
---|---|
OnErrorTypeEnum |
JRBaseImage.getOnErrorTypeValue() |
OnErrorTypeEnum |
JRBasePrintImage.getOnErrorTypeValue() |
Modifier and Type | Method and Description |
---|---|
void |
JRBaseImage.setOnErrorType(OnErrorTypeEnum onErrorTypeValue) |
void |
JRBasePrintImage.setOnErrorType(OnErrorTypeEnum onErrorTypeValue) |
Modifier and Type | Field and Description |
---|---|
protected OnErrorTypeEnum |
JRDesignImage.onErrorTypeValue |
Modifier and Type | Method and Description |
---|---|
OnErrorTypeEnum |
JRDesignImage.getOnErrorTypeValue() |
Modifier and Type | Method and Description |
---|---|
void |
JRDesignImage.setOnErrorType(OnErrorTypeEnum onErrorTypeValue) |
Modifier and Type | Field and Description |
---|---|
protected OnErrorTypeEnum |
JRTemplateImage.onErrorTypeValue |
Modifier and Type | Method and Description |
---|---|
OnErrorTypeEnum |
JRTemplateImage.getOnErrorTypeValue() |
OnErrorTypeEnum |
JRFillImage.getOnErrorTypeValue() |
OnErrorTypeEnum |
JRTemplatePrintImage.getOnErrorTypeValue() |
Modifier and Type | Method and Description |
---|---|
void |
JRTemplateImage.setOnErrorType(OnErrorTypeEnum onErrorTypeValue) |
void |
JRFillImage.setOnErrorType(OnErrorTypeEnum onErrorType) |
void |
JRTemplatePrintImage.setOnErrorType(OnErrorTypeEnum onErrorType) |
Modifier and Type | Method and Description |
---|---|
static OnErrorTypeEnum |
OnErrorTypeEnum.getByName(java.lang.String name) |
static OnErrorTypeEnum |
OnErrorTypeEnum.getByValue(byte value)
Deprecated.
Used only by deprecated serialized fields.
|
static OnErrorTypeEnum |
OnErrorTypeEnum.getByValue(java.lang.Byte value)
Deprecated.
Used only by deprecated serialized fields.
|
static OnErrorTypeEnum |
OnErrorTypeEnum.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OnErrorTypeEnum[] |
OnErrorTypeEnum.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
© 2001-2014 TIBCO Software Inc. www.jaspersoft.com