Package net.sf.jasperreports.engine
Interface JRScriptlet
-
- All Superinterfaces:
java.lang.Cloneable,JRCloneable,JRPropertiesHolder
- All Known Implementing Classes:
JRBaseScriptlet,JRDesignScriptlet,JRFillScriptlet
public interface JRScriptlet extends JRPropertiesHolder, JRCloneable
- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringSCRIPTLET_PARAMETER_NAME_SUFFIX
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDescription()java.lang.StringgetName()JRPropertyExpression[]getPropertyExpressions()Returns the list of dynamic/expression-based properties for this scriptlet.java.lang.Class<?>getValueClass()java.lang.StringgetValueClassName()voidsetDescription(java.lang.String description)-
Methods inherited from interface net.sf.jasperreports.engine.JRCloneable
clone
-
Methods inherited from interface net.sf.jasperreports.engine.JRPropertiesHolder
getParentProperties, getPropertiesMap, hasProperties
-
-
-
-
Field Detail
-
SCRIPTLET_PARAMETER_NAME_SUFFIX
static final java.lang.String SCRIPTLET_PARAMETER_NAME_SUFFIX
- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
java.lang.String getName()
-
getDescription
java.lang.String getDescription()
-
setDescription
void setDescription(java.lang.String description)
-
getValueClass
java.lang.Class<?> getValueClass()
-
getValueClassName
java.lang.String getValueClassName()
-
getPropertyExpressions
JRPropertyExpression[] getPropertyExpressions()
Returns the list of dynamic/expression-based properties for this scriptlet.- Returns:
- an array containing the expression-based properties of this scriptlet
-
-