| |
|
| java.lang.Object net.sf.jasperreports.charts.base.JRBaseDataRange
All known Subclasses: net.sf.jasperreports.charts.design.JRDesignDataRange,
JRBaseDataRange | public class JRBaseDataRange implements JRDataRange,Serializable(Code) | | An immutable instantiation of a JRDataRange , suitable for holding
a range.
author: Barry Klawans (bklawans@users.sourceforge.net) version: $Id: JRBaseDataRange.java 1793 2007-07-30 09:06:18Z teodord $ |
highExpression | protected JRExpression highExpression(Code) | | The expression used to calculate the upper bound of the range.
|
lowExpression | protected JRExpression lowExpression(Code) | | The expression used to calculate the lower bound of the range.
|
JRBaseDataRange | public JRBaseDataRange(JRDataRange dataRange)(Code) | | Constructs a copy of an existing range.
Parameters: dataRange - the range to copy |
JRBaseDataRange | public JRBaseDataRange(JRDataRange dataRange, JRBaseObjectFactory factory)(Code) | | Creates a copy of an existing range and registers all of the expressions
with a factory object. Once the expressions have been registered they will
be included when the report is compiled.
Parameters: dataRange - the range to copy Parameters: factory - the factory to register the expressions with |
collectExpressions | public void collectExpressions(JRExpressionCollector collector)(Code) | | Registers all of the expressions with the collector. If the expressions
have been registered with one of the report's factory they will be included
when the report is compiled.
Parameters: collector - the expression collector to use |
|
|
|