Package inexp.waiaria

Source Code of inexp.waiaria.WAIARIALoadApp

package inexp.waiaria;


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

/**
*
* @author jmarranz
*/
public class WAIARIALoadApp
{
    public static void init(ItsNatHttpServlet itsNatServlet,String pathPrefix)
    {
        pathPrefix = pathPrefix + "waiaria/pages/";

        // http://www.w3.org/WAI/PF/aria-practices/#TreeView
        // http://codetalks.org/source/widgets/tree/tree.html
        ItsNatDocumentTemplate docTemplate;
        docTemplate = itsNatServlet.registerItsNatDocumentTemplate("waiaria_tree","text/html", pathPrefix + "waiaria_tree.html");
        docTemplate.addItsNatServletRequestListener(new WAIARIALoadListener());
    }
}
TOP

Related Classes of inexp.waiaria.WAIARIALoadApp

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.