Package org.apache.beehive.netui.tags.html

Examples of org.apache.beehive.netui.tags.html.Html


     * This method will return the scriptReporter that is represented by the HTML tag.
     * @return IScriptReporter
     */
    protected IScriptReporter getHtmlTag(ServletRequest req)
    {
        Html html = (Html) req.getAttribute(Html.HTML_TAG_ID);
        if (html != null && html instanceof IScriptReporter)
            return (IScriptReporter) html;
        return null;
    }
View Full Code Here

TOP

Related Classes of org.apache.beehive.netui.tags.html.Html

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.