| org.jfree.report.URLImageContainer
All known Subclasses: org.jfree.report.DefaultImageReference, org.pentaho.plugin.jfreereport.reportcharts.ChartImageContainer,
URLImageContainer | public interface URLImageContainer extends ImageContainer(Code) | | An image container, that references a remote image. The image is not
required to be loadable as long as this container returns all necessary
information correctly.
Some output targets will not display anything, if the image is not loadable.
author: Thomas Morgner |
getSourceURL | public URL getSourceURL()(Code) | | Returns the source URL, if available.
the source URL of the image. |
getSourceURLString | public String getSourceURLString()(Code) | | Returns the source URL as string. This could also be a relative URL
which is not readable by the report processor, the source URL string
is copied as is - without being interpreted by the output target.
the source URL as string. |
isLoadable | public boolean isLoadable()(Code) | | Defines, whether the given URLs are readable. If there is no java.net.URL
sourceURL, then this method must return false.
true, if the source URL is loadable, false otherwise. |
|
|