Package inexp.xpathex

Source Code of inexp.xpathex.XPathExampleLoadApp

package inexp.xpathex;

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

public class XPathExampleLoadApp
{
    public static void init(ItsNatHttpServlet itsNatServlet,String pathPrefix)
    {
        pathPrefix = pathPrefix + "xpathex/pages/";

        ItsNatDocumentTemplate docTemplate;
        docTemplate = itsNatServlet.registerItsNatDocumentTemplate("xpathex","text/html", pathPrefix + "xpathex.html");
        docTemplate.addItsNatServletRequestListener(new XPathExampleLoadListener());
    }
}
TOP

Related Classes of inexp.xpathex.XPathExampleLoadApp

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.