if ( postProcessors != null && !postProcessors.isEmpty() )
{
for ( Iterator it = postProcessors.iterator(); it.hasNext(); )
{
InterpolationPostProcessor postProcessor = (InterpolationPostProcessor) it.next();
Object newVal = postProcessor.execute( realExpr, value );
if ( newVal != null )
{
value = newVal;
break;
}