{
sb.append( NLS.bind( Messages.getString( "EntryValueEditor.n_values" ), valueList.size() ) ); //$NON-NLS-1$
}
for ( Iterator<IValue> it = valueList.iterator(); it.hasNext(); )
{
IValue value = it.next();
IValueEditor vp = valueEditorManager.getCurrentValueEditor( value.getAttribute().getEntry(), value
.getAttribute().getDescription() );
sb.append( vp.getDisplayValue( value ) );
if ( it.hasNext() )
{
sb.append( ", " ); //$NON-NLS-1$