langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/api/JavacScope.java
changeset 26266 2d24bda701dc
parent 25874 83c19f00452c
child 29291 076c277565f7
--- a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/api/JavacScope.java	Tue Aug 26 12:45:28 2014 +0100
+++ b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/api/JavacScope.java	Wed Aug 27 07:44:00 2014 +0200
@@ -32,6 +32,8 @@
 
 import com.sun.tools.javac.comp.AttrContext;
 import com.sun.tools.javac.comp.Env;
+import com.sun.tools.javac.util.DefinedBy;
+import com.sun.tools.javac.util.DefinedBy.Api;
 
 
 
@@ -52,7 +54,7 @@
             //the "top-level" scope needs to return both imported and defined elements
             //see test CheckLocalElements
             return new JavacScope(env) {
-                @Override
+                @Override @DefinedBy(Api.COMPILER_TREE)
                 public Iterable<? extends Element> getLocalElements() {
                     return env.toplevel.namedImportScope.getSymbols();
                 }
@@ -69,6 +71,7 @@
         this.env = env;
     }
 
+    @DefinedBy(Api.COMPILER_TREE)
     public JavacScope getEnclosingScope() {
         if (env.outer != null && env.outer != env) {
             return create(env.outer);
@@ -78,9 +81,11 @@
                 public boolean isStarImportScope() {
                     return true;
                 }
+                @DefinedBy(Api.COMPILER_TREE)
                 public JavacScope getEnclosingScope() {
                     return null;
                 }
+                @DefinedBy(Api.COMPILER_TREE)
                 public Iterable<? extends Element> getLocalElements() {
                     return env.toplevel.starImportScope.getSymbols();
                 }
@@ -88,15 +93,18 @@
         }
     }
 
+    @DefinedBy(Api.COMPILER_TREE)
     public TypeElement getEnclosingClass() {
         // hide the dummy class that javac uses to enclose the top level declarations
         return (env.outer == null || env.outer == env ? null : env.enclClass.sym);
     }
 
+    @DefinedBy(Api.COMPILER_TREE)
     public ExecutableElement getEnclosingMethod() {
         return (env.enclMethod == null ? null : env.enclMethod.sym);
     }
 
+    @DefinedBy(Api.COMPILER_TREE)
     public Iterable<? extends Element> getLocalElements() {
         return env.info.getLocalElements();
     }