Package org.apache.beehive.netui.tags.rendering

Examples of org.apache.beehive.netui.tags.rendering.AbstractHtmlState


     */
    public void setStyle(String style)
    {
        if ("".equals(style))
            return;
        AbstractHtmlState tsh = getState();
        tsh.style = style;
    }
View Full Code Here


     */
    public void setStyleClass(String styleClass)
    {
        if ("".equals(styleClass))
            return;
        AbstractHtmlState tsh = getState();
        tsh.styleClass = styleClass;
    }
View Full Code Here

    public void setTagId(String tagId)
            throws JspException
    {
        // JSP 2.0 EL will convert a null into a empty string "".
        // If we get a "" we will display an error.
        AbstractHtmlState tsh = getState();
        tsh.id = setRequiredValueAttribute(tagId, "tagId");
    }
View Full Code Here

     * into the HTML.
     * @return the tagId.
     */
    public String getTagId()
    {
        AbstractHtmlState tsh = getState();
        return tsh.id;
    }
View Full Code Here

     * @netui:attribute required="false" rtexprvalue="true"
     * description="The title. "
     */
    public void setTitle(String title)
    {
        AbstractHtmlState tsh = getState();
        tsh.registerAttribute(AbstractHtmlState.ATTR_GENERAL, TITLE, title);
    }
View Full Code Here

     * @netui:attribute required="false" rtexprvalue="true"
     * description="Sets the language code for the base language of an element's attribute values and text content."
     */
    public void setLang(String lang)
    {
        AbstractHtmlState tsh = getState();
        tsh.registerAttribute(AbstractHtmlState.ATTR_GENERAL, LANG, lang);
    }
View Full Code Here

     * @netui:attribute required="false" rtexprvalue="true"
     * description="Specifies the direction of text. (LTR | RTL)"
     */
    public void setDir(String dir)
    {
        AbstractHtmlState tsh = getState();
        tsh.registerAttribute(AbstractHtmlState.ATTR_GENERAL, DIR, dir);
    }
View Full Code Here

     * Gets the onClick javascript event.
     * @return the onClick event.
     */
    public String getOnClick()
    {
        AbstractHtmlState tsh = getState();
        return tsh.getAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, ONCLICK);
    }
View Full Code Here

     * @netui:attribute required="false" rtexprvalue="true"
     * description="The onClick JavaScript event."
     */
    public void setOnClick(String onclick)
    {
        AbstractHtmlState tsh = getState();
        tsh.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, ONCLICK, onclick);
    }
View Full Code Here

     * @netui:attribute required="false" rtexprvalue="true"
     * description="The onDblClick JavaScript event."
     */
    public void setOnDblClick(String ondblclick)
    {
        AbstractHtmlState tsh = getState();
        tsh.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, ONDBLCLICK, ondblclick);
    }
View Full Code Here

TOP

Related Classes of org.apache.beehive.netui.tags.rendering.AbstractHtmlState

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.