Interface JRCompilationSourceCode
-
- All Known Implementing Classes:
JRDefaultCompilationSourceCode
public interface JRCompilationSourceCodeA source code unit to be compiled by a report compiler. In addition to the source code itself, the unit offers the possibility of determining whether a line of code corresponds to a report expression.- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetCode()Returns the source code.JRExpressiongetExpressionAtLine(int line)Determines whether a line of code corresponds to a report expression.
-
-
-
Method Detail
-
getCode
java.lang.String getCode()
Returns the source code.- Returns:
- the source code
-
getExpressionAtLine
JRExpression getExpressionAtLine(int line)
Determines whether a line of code corresponds to a report expression.- Parameters:
line- the line number- Returns:
- the expression to which the line of code corresponds if any and null otherwise
-
-