コード例 #1
0
ファイル: NodeFactory.java プロジェクト: tomka/fiji
 /** Creates a ASTConstant whose value of applying a unary operator to its arguments. */
 public ASTConstant buildConstantNode(Operator op, Node child1)
     throws IllegalArgumentException, ParseException {
   return buildConstantNode(op.getPFMC(), new Node[] {child1});
 }
コード例 #2
0
ファイル: NodeFactory.java プロジェクト: tomka/fiji
 /** Creates a ASTConstant whose value of applying the operator to its arguments. */
 public ASTConstant buildConstantNode(Operator op, Node children[])
     throws IllegalArgumentException, ParseException {
   return buildConstantNode(op.getPFMC(), children);
 }