public interface Scope
A Scope does not itself contain the details of the elements corresponding to the parameters, methods and fields of the methods and classes containing its position. However, these elements can be determined from the enclosing elements.
Scopes may be contained in an enclosing scope. The outermost scope contains those elements available via "star import" declarations; the scope within that contains the top level elements of the compilation unit, including any named imports.
Modifier and Type | Method | Description |
---|---|---|
TypeElement |
getEnclosingClass() |
Returns the innermost type element containing the position of this scope. |
ExecutableElement |
getEnclosingMethod() |
Returns the innermost executable element containing the position of this scope. |
Scope |
getEnclosingScope() |
Returns the enclosing scope. |
Iterable |
getLocalElements() |
Returns the elements directly contained in this scope. |
Scope getEnclosingScope()
TypeElement getEnclosingClass()
ExecutableElement getEnclosingMethod()
Iterable<? extends Element> getLocalElements()
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/jdk.compiler/com/sun/source/tree/Scope.html