bsh.Interpreter.unset()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(1.2k)|赞(0)|评价(0)|浏览(167)

本文整理了Java中bsh.Interpreter.unset()方法的一些代码示例,展示了Interpreter.unset()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Interpreter.unset()方法的具体详情如下:
包路径:bsh.Interpreter
类名称:Interpreter
方法名:unset

Interpreter.unset介绍

[英]Unassign the variable name. Name should evaluate to a variable.
[中]取消分配变量名。名称应计算为一个变量。

代码示例

代码示例来源:origin: org.testng/testng

private void resetContext(Interpreter interpreter) {
 try {
  interpreter.unset("method");
  interpreter.unset("groups");
  interpreter.unset("testngMethod");
 }
 catch(EvalError evalError) {
  Utils.log("bsh.Interpreter", 2, "Cannot reset interpreter:" + evalError.getMessage());
 }
}

代码示例来源:origin: org.zkoss.zk/zk

protected void unset(String name) {
  try {
    _ip.unset(name);
  } catch (EvalError ex) {
    throw UiException.Aide.wrap(ex);
  }
}

代码示例来源:origin: org.ofbiz/ofbcore-jira-share

public void undeclareBean(BSFDeclaredBean bean) throws BSFException {
  try {
    interpreter.unset(bean.name);
  } catch (EvalError e) {
    throw new BSFException("bsh internal error: " + e.toString());
  }
}

代码示例来源:origin: uk.org.mygrid.taverna.processors/taverna-beanshell-processor

interpreter.unset(outputPorts[ioutput].getName());
while (iinput.hasNext()) {
  String inputname = (String) iinput.next();
  interpreter.unset(inputname);

相关文章