final ElementType memberType = property.definition().getType();
final SortedSet<PropertyDef> properties = memberType.properties();
if( properties.size() == 1 )
{
final PropertyDef memberProperty = properties.first();
if( memberProperty instanceof ValueProperty &&
memberProperty.service( PossibleValuesService.class ) != null )
{
return true;
}
}
}