Package net.sf.jasperreports.engine
Interface JRHyperlinkParameter
-
- All Superinterfaces:
Cloneable
,JRCloneable
- All Known Implementing Classes:
JRBaseHyperlinkParameter
,JRDesignHyperlinkParameter
public interface JRHyperlinkParameter extends JRCloneable
A hyperlink parameter, consisting of a name and a value expression. Hyperlink parameters can be used to parametrize hyperlinks of custom types.- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
- See Also:
JRHyperlink.getHyperlinkParameters()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
Returns the parameter name.JRExpression
getValueExpression()
Returns the parameter value expression.-
Methods inherited from interface net.sf.jasperreports.engine.JRCloneable
clone
-
-
-
-
Method Detail
-
getName
String getName()
Returns the parameter name.- Returns:
- the parameter name
-
getValueExpression
JRExpression getValueExpression()
Returns the parameter value expression.- Returns:
- the parameter value expression
-
-