All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liqp.nodes.LNode Maven / Gradle / Ivy

Go to download

A Java implementation of the Liquid templating engine backed up by an ANTLR grammar.

There is a newer version: 0.9.1.0
Show newest version
package liqp.nodes;

import liqp.TemplateContext;

/**
 * Denotes a node in the AST the parse creates from the
 * input source.
 */
public interface LNode {

    /**
     * Renders this AST.
     *
     * @param context
     *         the context (variables) with which this
     *         node should be rendered.
     *
     * @return an Object denoting the rendered AST.
     */
    Object render(TemplateContext context);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy