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

liqp.nodes.LNode Maven / Gradle / Ivy

package liqp.nodes;

import java.util.Map;

/**
 * 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(Map context);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy