Package org.apache.flex.forks.velocity.runtime.parser.node

Examples of org.apache.flex.forks.velocity.runtime.parser.node.Node


    for (int i = 0; i < argCount; i++) {
      /*
       * we only handle StringLiterals and References right now
       */

      Node n = node.jjtGetChild(i);

      if (n.getType() == ParserTreeConstants.JJTSTRINGLITERAL
          || n.getType() == ParserTreeConstants.JJTREFERENCE) {
        if (!renderOutput(n, context, writer))
          outputErrorToStream(writer, "error with arg " + i
              + " please see log.");
      } else {
        rsvc.error("#include() error : invalid argument type : "
            + n.toString());
        outputErrorToStream(writer, "error with arg " + i
            + " please see log.");
      }
    }

View Full Code Here

TOP

Related Classes of org.apache.flex.forks.velocity.runtime.parser.node.Node

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.