*/
protected void setProperties(UIComponent component)
{
// TODO Auto-generated method stub
super.setProperties(component);
HtmlResource comp = (HtmlResource) component;
if (this._contentType != null) {
if (this._contentType.isLiteralText()) {
try {
java.lang.String __contentType = (java.lang.String) getFacesContext().
getApplication().
getExpressionFactory().
coerceToType(this._contentType.getExpressionString(),
java.lang.String.class);
comp.setContentType(__contentType);
} catch (ELException e) {
throw new FacesException(e);
}
} else {
component.setValueExpression("contentType", this._contentType);
}
}
if (this._data != null) {
if (this._data.isLiteralText()) {
try {
java.lang.Object __data = (java.lang.Object) getFacesContext().
getApplication().
getExpressionFactory().
coerceToType(this._data.getExpressionString(),
java.lang.Object.class);
comp.setData(__data);
} catch (ELException e) {
throw new FacesException(e);
}
} else {
component.setValueExpression("data", this._data);
}
}
if (this._disposition != null) {
if (this._disposition.isLiteralText()) {
try {
java.lang.String __disposition = (java.lang.String) getFacesContext().
getApplication().
getExpressionFactory().
coerceToType(this._disposition.getExpressionString(),
java.lang.String.class);
comp.setDisposition(__disposition);
} catch (ELException e) {
throw new FacesException(e);
}
} else {
component.setValueExpression("disposition", this._disposition);
}
}
if (this._fileName != null) {
if (this._fileName.isLiteralText()) {
try {
java.lang.String __fileName = (java.lang.String) getFacesContext().
getApplication().
getExpressionFactory().
coerceToType(this._fileName.getExpressionString(),
java.lang.String.class);
comp.setFileName(__fileName);
} catch (ELException e) {
throw new FacesException(e);
}
} else {
component.setValueExpression("fileName", this._fileName);