| java.lang.Object net.sf.jasperreports.engine.design.JRCompilationUnit
JRCompilationUnit | public class JRCompilationUnit (Code) | | Expression evaluator compilation unit used by report compilers.
author: Lucian Chirita (lucianc@users.sourceforge.net) version: $Id: JRCompilationUnit.java 1625 2007-03-09 17:21:31Z lucianc $ |
JRCompilationUnit | public JRCompilationUnit(String name, JRCompilationSourceCode sourceCode, File sourceFile, List expressions)(Code) | | Creates a compilation unit.
Parameters: name - the name of the unit Parameters: sourceCode - the source code generated for the unit Parameters: sourceFile - the file where the source code was saved Parameters: expressions - the list of expressions |
getCompilationSource | public JRCompilationSourceCode getCompilationSource()(Code) | | Returns the compilation source code unit.
the compilation source code |
getCompileData | public Serializable getCompileData()(Code) | | Returns the compilation data used for creating expression evaluators.
the compilation data used for creating expression evaluators |
getExpressions | public List getExpressions()(Code) | | Returns the list of expressions.
the list of expressions |
getName | public String getName()(Code) | | Returns the name of the unit.
the name of the unit |
getSourceCode | public String getSourceCode()(Code) | | Returns the source code generated for the unit.
the source code generated for the unit |
getSourceFile | public File getSourceFile()(Code) | | Returns the file where the source code was saved.
the file where the source code was saved |
setCompileData | public void setCompileData(Serializable compileData)(Code) | | Sets the compilation data used for creating expression evaluators.
Parameters: compileData - the compilation data |
|
|