| org.apache.bsf.engines.jacl.JaclEngine
JaclEngine | public class JaclEngine extends BSFEngineImpl (Code) | | This is the interface to Scriptics's Jacl (Tcl) from the
Bean Scripting Framework.
author: Sanjiva Weerawarana |
call | public Object call(Object obj, String method, Object[] args) throws BSFException(Code) | | Parameters: method - The name of the method to call. Parameters: args - an array of arguments to bepassed to the extension, which may be eitherVectors of Nodes, or Strings. |
declareBean | public void declareBean(BSFDeclaredBean bean) throws BSFException(Code) | | Declare a bean
|
eval | public Object eval(String source, int lineNo, int columnNo, Object oscript) throws BSFException(Code) | | This is used by an application to evaluate a string containing
some expression.
|
initialize | public void initialize(BSFManager mgr, String lang, Vector declaredBeans) throws BSFException(Code) | | Initialize the engine.
|
undeclareBean | public void undeclareBean(BSFDeclaredBean bean) throws BSFException(Code) | | Undeclare a previously declared bean.
|
|
|