final NumericRange rangeAnnotation = property.getAnnotation( NumericRange.class );
if( rangeAnnotation != null )
{
final String minStr = rangeAnnotation.min();
final String maxStr = rangeAnnotation.max();
if( minStr.length() > 0 && maxStr.length() > 0 )
{
return new ScalePropertyEditorPresentation( part, parent, composite );
}