Package org.ajax4jsf.component.html

Examples of org.ajax4jsf.component.html.AjaxLoadBundle


     */
    protected void setProperties(UIComponent component)
    {
        // TODO Auto-generated method stub
        super.setProperties(component);
    AjaxLoadBundle comp = (AjaxLoadBundle) component;
            
            if (this._basename != null) {
        if (this._basename.isLiteralText()) {
          try {
                       
            java.lang.String __basename = (java.lang.String) getFacesContext().
              getApplication().
                getExpressionFactory().
                  coerceToType(this._basename.getExpressionString(),
                      java.lang.String.class);
         
                        comp.setBasename(__basename);
                      } catch (ELException e) {
            throw new FacesException(e);
          }
        } else {
          component.setValueExpression("basename", this._basename);
        }
      }
                            
                      if (this._var != null) {
          comp.setVar(this._var);
        }
                       }
View Full Code Here


     */
    protected void setProperties(UIComponent component)
    {
        // TODO Auto-generated method stub
        super.setProperties(component);
    AjaxLoadBundle comp = (AjaxLoadBundle) component;
            
            if (this._basename != null) {
        if (this._basename.isLiteralText()) {
          try {
                       
            java.lang.String __basename = (java.lang.String) getFacesContext().
              getApplication().
                getExpressionFactory().
                  coerceToType(this._basename.getExpressionString(),
                      java.lang.String.class);
         
                        comp.setBasename(__basename);
                      } catch (ELException e) {
            throw new FacesException(e);
          }
        } else {
          component.setValueExpression("basename", this._basename);
        }
      }
                            
                      if (this._var != null) {
          comp.setVar(this._var);
        }
                       }
View Full Code Here

TOP

Related Classes of org.ajax4jsf.component.html.AjaxLoadBundle

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.