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 ofJRHyperlinkParameterthat 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 StringPROPERTY_NAMEstatic StringPROPERTY_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 Objectclone()JRPropertyChangeSupportgetEventSupport()Returns the property change support object for this instance.voidsetName(String name)Sets the parameter name.voidsetValueExpression(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:
clonein interfaceJRCloneable- Overrides:
clonein classJRBaseHyperlinkParameter
-
getEventSupport
public JRPropertyChangeSupport getEventSupport()
Description copied from interface:JRChangeEventsSupportReturns the property change support object for this instance.- Specified by:
getEventSupportin interfaceJRChangeEventsSupport- Returns:
- the property change support object for this instance
-
-