Package org.apache.garbage.tree

Examples of org.apache.garbage.tree.TemplateFor


/**
* Parse a template foreach block (<code>&quot;#foreach...#end</code>).
*/
  final public void p_template_foreach(Events events) throws ParseException {
  TemplateFor event = null;
    jj_consume_token(T_TEMPLATE_FOREACH);
    pushState(EXPRESSION);
    event = new TemplateFor(this, p_expression_data());
    popState();
    p_block(event);
    jj_consume_token(T_TEMPLATE_END);
    events.append(event);
  }
View Full Code Here

TOP

Related Classes of org.apache.garbage.tree.TemplateFor

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.