Package inexp.juel

Source Code of inexp.juel.JUELExampleLoadApp

package inexp.juel;

import org.itsnat.core.http.ItsNatHttpServlet;
import org.itsnat.core.tmpl.ItsNatDocumentTemplate;

public class JUELExampleLoadApp
{
    public static void init(ItsNatHttpServlet itsNatServlet,String pathPrefix)
    {
        pathPrefix = pathPrefix + "juel/pages/";
       
        ItsNatDocumentTemplate docTemplate;
        docTemplate = itsNatServlet.registerItsNatDocumentTemplate("juel","text/html", pathPrefix + "juel.html");
        docTemplate.addItsNatServletRequestListener(new JUELExampleLoadListener());
    }
}
TOP

Related Classes of inexp.juel.JUELExampleLoadApp

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.