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