Package net.sf.jasperreports.engine.base
Class JRBaseHyperlinkParameter
- java.lang.Object
-
- net.sf.jasperreports.engine.base.JRBaseHyperlinkParameter
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,JRCloneable,JRHyperlinkParameter
- Direct Known Subclasses:
JRDesignHyperlinkParameter
public class JRBaseHyperlinkParameter extends java.lang.Object implements JRHyperlinkParameter, java.io.Serializable
Base implementation ofJRHyperlinkParameter.- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.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 java.lang.Objectclone()java.lang.StringgetName()Returns the parameter name.JRExpressiongetValueExpression()Returns the parameter value expression.
-
-
-
Field Detail
-
name
protected java.lang.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 java.lang.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 java.lang.Object clone()
- Specified by:
clonein interfaceJRCloneable- Overrides:
clonein classjava.lang.Object
-
-