* @return ValueExpression instance
*/
public ValueExpression getValueExpression(FaceletContext ctx, Class type) {
try {
ExpressionFactory f = ctx.getExpressionFactory();
return new TagValueExpression(this, f.createValueExpression(ctx,
this.value, type));
} catch (Exception e) {
throw new TagAttributeException(this, e);
}
}