break;
case Scope.CLASS_SCOPE:
specifiedTags = CLASS_TAGS;
break;
case Scope.METHOD_SCOPE:
MethodScope methodScope = (MethodScope) scope;
if (methodScope.referenceMethod() == null) {
if (methodScope.initializedField == null) {
specifiedTags = PACKAGE_TAGS;
} else {
specifiedTags = FIELD_TAGS;
}