*/
protected void setProperties(UIComponent component)
{
// TODO Auto-generated method stub
super.setProperties(component);
HtmlEnumItem comp = (HtmlEnumItem) component;
if (this._enumValue != null) {
if (this._enumValue.isLiteralText()) {
try {
java.lang.String __enumValue = (java.lang.String) getFacesContext().
getApplication().
getExpressionFactory().
coerceToType(this._enumValue.getExpressionString(),
java.lang.String.class);
comp.setEnumValue(__enumValue);
} catch (ELException e) {
throw new FacesException(e);
}
} else {
component.setValueExpression("enumValue", this._enumValue);
}
}
if (this._itemDescription != null) {
if (this._itemDescription.isLiteralText()) {
try {
java.lang.String __itemDescription = (java.lang.String) getFacesContext().
getApplication().
getExpressionFactory().
coerceToType(this._itemDescription.getExpressionString(),
java.lang.String.class);
comp.setItemDescription(__itemDescription);
} catch (ELException e) {
throw new FacesException(e);
}
} else {
component.setValueExpression("itemDescription", this._itemDescription);
}
}
if (this._itemDisabled != null) {
if (this._itemDisabled.isLiteralText()) {
try {
Boolean __itemDisabled = (Boolean) getFacesContext().
getApplication().
getExpressionFactory().
coerceToType(this._itemDisabled.getExpressionString(),
Boolean.class);
comp.setItemDisabled(__itemDisabled.booleanValue());
} catch (ELException e) {
throw new FacesException(e);
}
} else {
component.setValueExpression("itemDisabled", this._itemDisabled);
}
}
if (this._itemEscaped != null) {
if (this._itemEscaped.isLiteralText()) {
try {
Boolean __itemEscaped = (Boolean) getFacesContext().
getApplication().
getExpressionFactory().
coerceToType(this._itemEscaped.getExpressionString(),
Boolean.class);
comp.setItemEscaped(__itemEscaped.booleanValue());
} catch (ELException e) {
throw new FacesException(e);
}
} else {
component.setValueExpression("itemEscaped", this._itemEscaped);
}
}
if (this._itemLabel != null) {
if (this._itemLabel.isLiteralText()) {
try {
java.lang.String __itemLabel = (java.lang.String) getFacesContext().
getApplication().
getExpressionFactory().
coerceToType(this._itemLabel.getExpressionString(),
java.lang.String.class);
comp.setItemLabel(__itemLabel);
} catch (ELException e) {
throw new FacesException(e);
}
} else {
component.setValueExpression("itemLabel", this._itemLabel);
}
}
if (this._itemValue != null) {
if (this._itemValue.isLiteralText()) {
try {
java.lang.Object __itemValue = (java.lang.Object) getFacesContext().
getApplication().
getExpressionFactory().
coerceToType(this._itemValue.getExpressionString(),
java.lang.Object.class);
comp.setItemValue(__itemValue);
} catch (ELException e) {
throw new FacesException(e);
}
} else {
component.setValueExpression("itemValue", this._itemValue);
}
}
if (this._label != null) {
if (this._label.isLiteralText()) {
try {
java.lang.String __label = (java.lang.String) getFacesContext().
getApplication().
getExpressionFactory().
coerceToType(this._label.getExpressionString(),
java.lang.String.class);
comp.setLabel(__label);
} catch (ELException e) {
throw new FacesException(e);
}
} else {
component.setValueExpression("label", this._label);
}
}
if (this._value != null) {
if (this._value.isLiteralText()) {
try {
java.lang.Object __value = (java.lang.Object) getFacesContext().
getApplication().
getExpressionFactory().
coerceToType(this._value.getExpressionString(),
java.lang.Object.class);
comp.setValue(__value);
} catch (ELException e) {
throw new FacesException(e);
}
} else {
component.setValueExpression("value", this._value);