I've found a solution:
Translation translationChanged = (Translation)
context.getApplication().evaluateExpressionGet(context, "#{translation}",
Translation.*class*);
I could have used a more generalized approach like you were suggesting:
ValueExpression expression = inputCountry.getValueExpression("value");
String expressionString = expression.getExpressionString();
Do some cleaning on the expressionString and then
Translation translationChanged = (Translation)
context.getApplication().evaluateExpressionGet(context, expressionString ,
Translation.*class*);
Thx Simon, you put me in the right direction
2009/1/15 Pierandrea Cercato <[email protected]>
> I'm limited by the a4j component
>
>