protected final Map< String, PropertyDescriptor > getThresholdedRuleProperties( final IThresholdedRule rule )
{
final Map< String, PropertyDescriptor > properties = new LinkedHashMap< String, PropertyDescriptor >();
properties.put( rule.getThresholdName(),
new IntegerProperty( rule.getThresholdName(),
"",
rule.getDefaultThreshold(),
properties.size() ) );
return properties;