Uses of Class
org.apache.bsf.util.CodeBuffer
-
Packages that use CodeBuffer Package Description org.apache.bsf org.apache.bsf.util -
-
Uses of CodeBuffer in org.apache.bsf
Methods in org.apache.bsf with parameters of type CodeBuffer Modifier and Type Method Description voidBSFEngine. compileApply(java.lang.String source, int lineNo, int columnNo, java.lang.Object funcBody, java.util.Vector paramNames, java.util.Vector arguments, CodeBuffer cb)This is used by an application to compile an anonymous function.voidBSFManager. compileApply(java.lang.String lang, java.lang.String source, int lineNo, int columnNo, java.lang.Object funcBody, java.util.Vector paramNames, java.util.Vector arguments, CodeBuffer cb)Compile the application of the given anonymous function of the given language to the given parameters into the given CodeBuffer.voidBSFEngine. compileExpr(java.lang.String source, int lineNo, int columnNo, java.lang.Object expr, CodeBuffer cb)This is used by an application to compile a value-returning expression.voidBSFManager. compileExpr(java.lang.String lang, java.lang.String source, int lineNo, int columnNo, java.lang.Object expr, CodeBuffer cb)Compile the given expression of the given language into the given CodeBuffer.voidBSFEngine. compileScript(java.lang.String source, int lineNo, int columnNo, java.lang.Object script, CodeBuffer cb)This is used by an application to compile some script.voidBSFManager. compileScript(java.lang.String lang, java.lang.String source, int lineNo, int columnNo, java.lang.Object script, CodeBuffer cb)Compile the given script of the given language into the given CodeBuffer. -
Uses of CodeBuffer in org.apache.bsf.util
Methods in org.apache.bsf.util with parameters of type CodeBuffer Modifier and Type Method Description voidBSFEngineImpl. compileApply(java.lang.String source, int lineNo, int columnNo, java.lang.Object funcBody, java.util.Vector paramNames, java.util.Vector arguments, CodeBuffer cb)Default impl of compileApply - calls compileExpr ignoring parameters.voidBSFEngineImpl. compileExpr(java.lang.String source, int lineNo, int columnNo, java.lang.Object expr, CodeBuffer cb)Default impl of compileExpr - generates code that'll create a new manager, evaluate the expression, and return the value.voidBSFEngineImpl. compileScript(java.lang.String source, int lineNo, int columnNo, java.lang.Object script, CodeBuffer cb)Default impl of compileScript - generates code that'll create a new manager, and execute the script.voidCodeBuffer. merge(CodeBuffer otherCB)Constructors in org.apache.bsf.util with parameters of type CodeBuffer Constructor Description CodeBuffer(CodeBuffer parent)
-