コード例 #1
0
ファイル: JEP.java プロジェクト: RichardMorris/jep-java-gpl
 /**
  * Removes a function from the parser.
  *
  * @return If the function was added earlier, the function class instance is returned. If the
  *     function was not present, <code>null</code> is returned.
  */
 public Object removeFunction(String name) {
   return funTab.remove(name);
 }