// wildcarded properties must not wildcard the "property" part
// eg "property.<regex>"
if ( suffix.equals( "*" ) )
{
// all attributes *and* all properties
allValueNames = getAllPropertyNames( new PropertyValueAccessor(getMBS()), objectName );
allValueNames.addAll(getAllPropertyNames( new SystemPropertyValueAccessor(getMBS()), objectName ));
allValueNames.addAll( getAllValueNames( getMBS(), objectName ) );
}
else if ((prop_accessor=(new PrefixedValueSupport(getMBS()).getPrefixedValueAccessor(suffix)))!=null)
{