| org.jfree.report.LocalImageContainer
All known Subclasses: org.jfree.report.DefaultImageReference, org.pentaho.plugin.jfreereport.reportcharts.ChartImageContainer,
LocalImageContainer | public interface LocalImageContainer extends ImageContainer(Code) | | The LocalImageContainer makes the image available as 'java.awt.Image' instance.
This way, the image can be included in the local content creation process.
author: Thomas Morgner |
Method Summary | |
public Object | getIdentity() Returns the identity information. | public Image | getImage() Returns the image instance for this image container. | public String | getName() Returns the name of this image reference. | public boolean | isIdentifiable() Checks, whether this image has a assigned identity. |
getIdentity | public Object getIdentity()(Code) | | Returns the identity information.
the image identifier. |
getImage | public Image getImage()(Code) | | Returns the image instance for this image container.
This method might return null , if the image is
not available.
the image data. |
getName | public String getName()(Code) | | Returns the name of this image reference. The name returned should be unique.
the name. |
isIdentifiable | public boolean isIdentifiable()(Code) | | Checks, whether this image has a assigned identity. Two identities should be equal,
if the image contents are equal.
true, if that image contains contains identity information, false otherwise. |
|
|