| org.netbeans.modules.reportgenerator.api.ReportElement
All known Subclasses: org.netbeans.modules.reportgenerator.api.impl.ReportElementImpl,
ReportElement | public interface ReportElement extends ReportNode,ReportAttributeContainer(Code) | | ReportElement represents one element in a ReportSection.
Typically a ReportElement represents one node on a canvas.
It is the basic building bloc for which a report will be generated with
details about it.
For example it can represents one IEP operator or one BPEL activity like receive/invoke
etc.
author: radval |
getDescription | String getDescription()(Code) | | Get the description for this element.
This is usually a documentation about what
this element represents.
description. |
getImage | Image getImage()(Code) | | Get image for this element. Usually it is an
image specific for this element.
|
getName | String getName()(Code) | | Get the name of this report element.
The name usually is the used to start a section
for this report element.
name |
setDescription | void setDescription(String description)(Code) | | Set the description for this element.
This is usually a documentation about what
this element represents.
Parameters: description - |
setImage | void setImage(Image image)(Code) | | Set image for this element. Usually it is an
image specific for this element.
Parameters: image - Image |
setName | void setName(String name)(Code) | | Set the name of this report element.
The name usually is the used to start a section
for this report element.
Parameters: name - name |
|
|