Package org.jboss.seam.ui.component.html

Examples of org.jboss.seam.ui.component.html.HtmlTransformImageSize


     */
    protected void setProperties(UIComponent component)
    {
        // TODO Auto-generated method stub
        super.setProperties(component);
    HtmlTransformImageSize comp = (HtmlTransformImageSize) component;
              
            if (this._factor != null) {
        if (this._factor.isLiteralText()) {
          try {
                       
            java.lang.Double __factor = (java.lang.Double) getFacesContext().
              getApplication().
                getExpressionFactory().
                  coerceToType(this._factor.getExpressionString(),
                      java.lang.Double.class);
         
                        comp.setFactor(__factor);
                      } catch (ELException e) {
            throw new FacesException(e);
          }
        } else {
          component.setValueExpression("factor", this._factor);
        }
      }
                        
            if (this._height != null) {
        if (this._height.isLiteralText()) {
          try {
                       
            java.lang.Integer __height = (java.lang.Integer) getFacesContext().
              getApplication().
                getExpressionFactory().
                  coerceToType(this._height.getExpressionString(),
                      java.lang.Integer.class);
         
                        comp.setHeight(__height);
                      } catch (ELException e) {
            throw new FacesException(e);
          }
        } else {
          component.setValueExpression("height", this._height);
        }
      }
                         
            if (this._maintainRatio != null) {
        if (this._maintainRatio.isLiteralText()) {
          try {
                       
            Boolean __maintainRatio = (Boolean) getFacesContext().
              getApplication().
                getExpressionFactory().
                  coerceToType(this._maintainRatio.getExpressionString(),
                      Boolean.class);
         
                        comp.setMaintainRatio(__maintainRatio.booleanValue());
                      } catch (ELException e) {
            throw new FacesException(e);
          }
        } else {
          component.setValueExpression("maintainRatio", this._maintainRatio);
        }
      }
                         
            if (this._width != null) {
        if (this._width.isLiteralText()) {
          try {
                       
            java.lang.Integer __width = (java.lang.Integer) getFacesContext().
              getApplication().
                getExpressionFactory().
                  coerceToType(this._width.getExpressionString(),
                      java.lang.Integer.class);
         
                        comp.setWidth(__width);
                      } catch (ELException e) {
            throw new FacesException(e);
          }
        } else {
          component.setValueExpression("width", this._width);
View Full Code Here


     */
    protected void setProperties(UIComponent component)
    {
        // TODO Auto-generated method stub
        super.setProperties(component);
    HtmlTransformImageSize comp = (HtmlTransformImageSize) component;
              
            if (this._factor != null) {
        if (this._factor.isLiteralText()) {
          try {
                       
            java.lang.Double __factor = (java.lang.Double) getFacesContext().
              getApplication().
                getExpressionFactory().
                  coerceToType(this._factor.getExpressionString(),
                      java.lang.Double.class);
         
                        comp.setFactor(__factor);
                      } catch (ELException e) {
            throw new FacesException(e);
          }
        } else {
          component.setValueExpression("factor", this._factor);
        }
      }
                        
            if (this._height != null) {
        if (this._height.isLiteralText()) {
          try {
                       
            java.lang.Integer __height = (java.lang.Integer) getFacesContext().
              getApplication().
                getExpressionFactory().
                  coerceToType(this._height.getExpressionString(),
                      java.lang.Integer.class);
         
                        comp.setHeight(__height);
                      } catch (ELException e) {
            throw new FacesException(e);
          }
        } else {
          component.setValueExpression("height", this._height);
        }
      }
                         
            if (this._maintainRatio != null) {
        if (this._maintainRatio.isLiteralText()) {
          try {
                       
            Boolean __maintainRatio = (Boolean) getFacesContext().
              getApplication().
                getExpressionFactory().
                  coerceToType(this._maintainRatio.getExpressionString(),
                      Boolean.class);
         
                        comp.setMaintainRatio(__maintainRatio.booleanValue());
                      } catch (ELException e) {
            throw new FacesException(e);
          }
        } else {
          component.setValueExpression("maintainRatio", this._maintainRatio);
        }
      }
                         
            if (this._width != null) {
        if (this._width.isLiteralText()) {
          try {
                       
            java.lang.Integer __width = (java.lang.Integer) getFacesContext().
              getApplication().
                getExpressionFactory().
                  coerceToType(this._width.getExpressionString(),
                      java.lang.Integer.class);
         
                        comp.setWidth(__width);
                      } catch (ELException e) {
            throw new FacesException(e);
          }
        } else {
          component.setValueExpression("width", this._width);
View Full Code Here

TOP

Related Classes of org.jboss.seam.ui.component.html.HtmlTransformImageSize

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.