Package freemarker.ext.beans

Examples of freemarker.ext.beans.BeansWrapperBuilder


       
        // Legacy method: Keeps TemplateModel created on the time it was called.
        cfg.setSharedVariable("b", "bbLegacy");
       
        // Cause re-wrapping of variables added via setSharedVaribles:
        cfg.setObjectWrapper(new BeansWrapperBuilder(Configuration.VERSION_2_3_0).build());

        {
            TemplateScalarModel aVal = (TemplateScalarModel) cfg.getSharedVariable("a");
            assertEquals("aa", aVal.getAsString());
            assertEquals(StringModel.class, aVal.getClass());
View Full Code Here

TOP

Related Classes of freemarker.ext.beans.BeansWrapperBuilder

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.