Package galoot.types

Examples of galoot.types.Document


    /**
     * Initialize the instance vars used in processing
     */
    private void init()
    {
        document = new Document();
        variableStack = new Stack<Object>();
        filterStack = new LinkedList<Pair<String, String>>();
        filterBlockData = new Stack<StringBuilder>();
        forLoopStack = new Stack<Map<String, Object>>();
    }
View Full Code Here


    private void processIncludedFile(String filename)
    {
        context.push();
        try
        {
            Document doc = loadDocument(filename);
            if (doc == null)
                throw new Exception();
            finishString(doc.evaluateAsString());
        }
        catch (Throwable e)
        {
            log.warn("File could not be included: " + filename);
            // ignore the problem for now
View Full Code Here

TOP

Related Classes of galoot.types.Document

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.