Package freemarker.core

Examples of freemarker.core.Scope.resolveVariable()


        }
        final Scope scope = (Scope) model;
        return new TemplateMethodModel() {
            @Parameters("key")
            public Object exec(List args) throws TemplateModelException {
                return scope.resolveVariable((String) args.get(0));
            }
        };
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.