Package info.bliki.wiki.template.expr.ast

Examples of info.bliki.wiki.template.expr.ast.FunctionNode


    return new FloatNode(doubleString);
  }

  @Override
  public FunctionNode createFunction(final SymbolNode head) {
    return new FunctionNode(head);
  }
View Full Code Here


    return new FunctionNode(head);
  }

  @Override
  public FunctionNode createFunction(final SymbolNode head, final ASTNode arg0) {
    return new FunctionNode(head, arg0);
  }
View Full Code Here

    return new FunctionNode(head, arg0);
  }

  @Override
  public FunctionNode createFunction(final SymbolNode head, final ASTNode arg0, final ASTNode arg1) {
    return new FunctionNode(head, arg0, arg1);
  }
View Full Code Here

  /**
   * Creates a new list with no arguments from the given header object .
   */
  @Override
  public FunctionNode createAST(final ASTNode headExpr) {
    return new FunctionNode(headExpr);
  }
View Full Code Here

        return new FloatNode(doubleString);
    }

    @Override
    public FunctionNode createFunction(final SymbolNode head) {
        return new FunctionNode(head);
    }
View Full Code Here

        return new FunctionNode(head);
    }

    @Override
    public FunctionNode createFunction(final SymbolNode head, final ASTNode arg0) {
        return new FunctionNode(head, arg0);
    }
View Full Code Here

        return new FunctionNode(head, arg0);
    }

    @Override
    public FunctionNode createFunction(final SymbolNode head, final ASTNode arg0, final ASTNode arg1) {
        return new FunctionNode(head, arg0, arg1);
    }
View Full Code Here

    /**
     * Creates a new list with no arguments from the given header object .
     */
    @Override
    public FunctionNode createAST(final ASTNode headExpr) {
        return new FunctionNode(headExpr);
    }
View Full Code Here

  public ASTNode createDouble(final String doubleString) {
    return new FloatNode(doubleString);
  }

  public FunctionNode createFunction(final SymbolNode head) {
    return new FunctionNode(head);
  }
View Full Code Here

  public FunctionNode createFunction(final SymbolNode head) {
    return new FunctionNode(head);
  }

  public FunctionNode createFunction(final SymbolNode head, final ASTNode arg0) {
    return new FunctionNode(head, arg0);
  }
View Full Code Here

TOP

Related Classes of info.bliki.wiki.template.expr.ast.FunctionNode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.