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

freemarker.ext.jsp.FreeMarkerPageContext1 Maven / Gradle / Ivy

Go to download

Google App Engine compliant variation of FreeMarker. FreeMarker is a "template engine"; a generic tool to generate text output based on templates.

There is a newer version: 2.3.33
Show newest version
package freemarker.ext.jsp;

import freemarker.template.TemplateModelException;

/**
 * Implementation of PageContext that contains JSP 1.1 specific methods. This 
 * class is public to work around Google App Engine Java compliance issues. Do 
 * not use it explicitly.
 * @author Attila Szegedi
 * @version $Id: FreeMarkerPageContext1.java,v 1.1.2.1 2006/07/08 14:45:34 ddekany Exp $
 */
public class FreeMarkerPageContext1 extends FreeMarkerPageContext {

    public FreeMarkerPageContext1() throws TemplateModelException {
        super();
    }

    public void include (String s, boolean b) {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy