*/
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);