Class JRDesignHyperlinkParameter
- java.lang.Object
-
- net.sf.jasperreports.engine.base.JRBaseHyperlinkParameter
-
- net.sf.jasperreports.engine.design.JRDesignHyperlinkParameter
-
- All Implemented Interfaces:
Serializable
,Cloneable
,JRChangeEventsSupport
,JRCloneable
,JRHyperlinkParameter
public class JRDesignHyperlinkParameter extends JRBaseHyperlinkParameter implements JRChangeEventsSupport
Implementation ofJRHyperlinkParameter
that can be used for report designing purposes.- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
PROPERTY_NAME
static String
PROPERTY_VALUE_EXPRESSION
-
Fields inherited from class net.sf.jasperreports.engine.base.JRBaseHyperlinkParameter
name, valueExpression
-
-
Constructor Summary
Constructors Constructor Description JRDesignHyperlinkParameter()
Creates a blank hyperlink parameter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
clone()
JRPropertyChangeSupport
getEventSupport()
Returns the property change support object for this instance.void
setName(String name)
Sets the parameter name.void
setValueExpression(JRExpression valueExpression)
Sets the parameter value expression.-
Methods inherited from class net.sf.jasperreports.engine.base.JRBaseHyperlinkParameter
getName, getValueExpression
-
-
-
-
Field Detail
-
PROPERTY_NAME
public static final String PROPERTY_NAME
- See Also:
- Constant Field Values
-
PROPERTY_VALUE_EXPRESSION
public static final String PROPERTY_VALUE_EXPRESSION
- See Also:
- Constant Field Values
-
-
Method Detail
-
setName
public void setName(String name)
Sets the parameter name.- Parameters:
name
- the name- See Also:
JRBaseHyperlinkParameter.getName()
-
setValueExpression
public void setValueExpression(JRExpression valueExpression)
Sets the parameter value expression.This expression will be evaluated at fill time and the resulting value will be saved in the print hyperlink instance.
- Parameters:
valueExpression
- the expression that produces the parameter value
-
clone
public Object clone()
- Specified by:
clone
in interfaceJRCloneable
- Overrides:
clone
in classJRBaseHyperlinkParameter
-
getEventSupport
public JRPropertyChangeSupport getEventSupport()
Description copied from interface:JRChangeEventsSupport
Returns the property change support object for this instance.- Specified by:
getEventSupport
in interfaceJRChangeEventsSupport
- Returns:
- the property change support object for this instance
-
-