Uses of Class
org.eclipse.higgins.util.jscript.JScriptException

Uses of JScriptException in org.eclipse.higgins.util.jscript
 

Methods in org.eclipse.higgins.util.jscript that throw JScriptException
 void JScriptScope.addToScope(String scriptText, String scriptID)
          Parses, complies and evaluates the script, the output of the script should result in the shared scope containing global variables.
static String JScriptExecHelper.transformString(JScriptExec exec, String paramName, String param)
          Allows String Transformation
static URI JScriptExecHelper.transformURI(JScriptExec exec, String[] paramNames, URI in)
          Allows URI Transformation
static URI JScriptExecHelper.transformURI(JScriptExec exec, String[] paramNames, URI[] in)
          Allows URI Transformation
static URI JScriptExecHelper.transformURI(JScriptExec exec, String paramName, URI in)
          Allows URI Transformation
static Iterator JScriptExecHelper.transformURItoMany(JScriptExec exec, String paramName, URI in)
          Allows URI Transformation
static String JScriptExecHelper.evaluateToString(JScriptExec exec, String[] paramNames, Object[] params)
          Allows String Transformation or Retrieval
static String JScriptExecHelper.evaluateToString(JScriptExec exec, String paramName, Object in)
          Allows String Transformation or Retrieval
 Object JScriptExec.evaluate(String[] paramNames, Object[] params)
          Evaluate a previously complied script fragment.
 Object JScriptExec.evaluate(String[] paramNames, Object[] params, String[] outputNames, Object[] outputObjects)
          Evaluate a previously complied script fragment.
 Object JScriptExec.evaluate(String ParamName, Object Param)
          Evaluate a previously complied script fragment.
 

Constructors in org.eclipse.higgins.util.jscript that throw JScriptException
JScriptExec(JScriptScope sharedScope, String script, String scriptID)