// beacuse type we have objValue already
// Coerce the value of the "value" expression to the "target" expression value type following the Expression
// Language coercion rules.
ExpressionFactory expressionFactory = facesContext.getApplication().getExpressionFactory();
value = expressionFactory.coerceToType(value, targetType);
}
// Call setValue()on the "target" ValueExpression with the resulting value.
_target.setValue(elContext, value);
}