*/
protected void setProperties(UIComponent component)
{
// TODO Auto-generated method stub
super.setProperties(component);
HtmlLoadScript comp = (HtmlLoadScript) component;
if (this._src != null) {
if (this._src.isLiteralText()) {
try {
java.lang.Object __src = (java.lang.Object) getFacesContext().
getApplication().
getExpressionFactory().
coerceToType(this._src.getExpressionString(),
java.lang.Object.class);
comp.setSrc(__src);
} catch (ELException e) {
throw new FacesException(e);
}
} else {
component.setValueExpression("src", this._src);