Frames | No Frames |
Methods with parameter type org.apache.bsf.util.CodeBuffer | |
void | BSFManager.compileApply(String lang, String source, int lineNo, int columnNo, Object funcBody, Vector paramNames, Vector arguments, CodeBuffer cb) Compile the application of the given anonymous function of the given
language to the given parameters into the given CodeBuffer. |
void | BSFEngine.compileApply(String source, int lineNo, int columnNo, Object funcBody, Vector paramNames, Vector arguments, CodeBuffer cb) This is used by an application to compile an anonymous function. |
void | BSFManager.compileExpr(String lang, String source, int lineNo, int columnNo, Object expr, CodeBuffer cb) Compile the given expression of the given language into the given
CodeBuffer. |
void | This is used by an application to compile a value-returning expression. |
void | BSFManager.compileScript(String lang, String source, int lineNo, int columnNo, Object script, CodeBuffer cb) Compile the given script of the given language into the given
CodeBuffer. |
void | This is used by an application to compile some script. |
Constructors with parameter type org.apache.bsf.util.CodeBuffer | |
Methods with parameter type org.apache.bsf.util.CodeBuffer | |
void | BSFEngineImpl.compileApply(String source, int lineNo, int columnNo, Object funcBody, Vector paramNames, Vector arguments, CodeBuffer cb) Default impl of compileApply - calls compileExpr ignoring parameters. |
void | Default impl of compileExpr - generates code that'll create a new
manager, evaluate the expression, and return the value. |
void | Default impl of compileScript - generates code that'll create a new
manager, and execute the script. |
void |