Package net.sf.jasperreports.engine.base
Class JRBaseHyperlinkParameter
- java.lang.Object
-
- net.sf.jasperreports.engine.base.JRBaseHyperlinkParameter
-
- All Implemented Interfaces:
Serializable,Cloneable,JRCloneable,JRHyperlinkParameter
- Direct Known Subclasses:
JRDesignHyperlinkParameter
public class JRBaseHyperlinkParameter extends Object implements JRHyperlinkParameter, Serializable
Base implementation ofJRHyperlinkParameter.- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringnameprotected JRExpressionvalueExpression
-
Constructor Summary
Constructors Modifier Constructor Description protectedJRBaseHyperlinkParameter()Creates a blank instance.JRBaseHyperlinkParameter(JRHyperlinkParameter parameter, JRBaseObjectFactory factory)Creates an instance equivalent to an existing hyperlink parameter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectclone()StringgetName()Returns the parameter name.JRExpressiongetValueExpression()Returns the parameter value expression.
-
-
-
Field Detail
-
name
protected String name
-
valueExpression
protected JRExpression valueExpression
-
-
Constructor Detail
-
JRBaseHyperlinkParameter
protected JRBaseHyperlinkParameter()
Creates a blank instance.
-
JRBaseHyperlinkParameter
public JRBaseHyperlinkParameter(JRHyperlinkParameter parameter, JRBaseObjectFactory factory)
Creates an instance equivalent to an existing hyperlink parameter.- Parameters:
parameter- the parameter to replicatefactory- the base object factory
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:JRHyperlinkParameterReturns the parameter name.- Specified by:
getNamein interfaceJRHyperlinkParameter- Returns:
- the parameter name
-
getValueExpression
public JRExpression getValueExpression()
Description copied from interface:JRHyperlinkParameterReturns the parameter value expression.- Specified by:
getValueExpressionin interfaceJRHyperlinkParameter- Returns:
- the parameter value expression
-
clone
public Object clone()
- Specified by:
clonein interfaceJRCloneable- Overrides:
clonein classObject
-
-