| Interface | Description |
|---|---|
| CompiledImport |
A traditional narrow import declaration imports a single type.
|
| Element |
The common base type of SourceElement and JavaElement.
|
| FlowAnalysisListener |
Listener that is called back when syms interesting for flow analysis
are compiled.
|
| JavaAnnotation |
An instance of an annotation type.
|
| JavaClass |
A JavaClass is mostly the equivalent of java/lang/Class.
|
| JavaElement |
CompiledObject is the compiled representation of a syntactic (aka
symbolic) java element.
|
| JavaField |
The JavaField is the compiled representation of a java field.
|
| JavaFile |
A compilation unit.
|
| JavaHasAnnotations |
All runtime annotations are provided, both visible and invisible.
|
| JavaHasName |
A JavaHasName object has a name.
|
| JavaHasType |
A JavaHasType object has a descriptor and a signature.
|
| JavaHasVersion |
A JavaHasVersion object has a version.
|
| JavaIsGeneric |
A generic declaration declares type parameters.
|
| JavaLocalVariable |
A compile-time local variable (or formal parameter).
|
| JavaMember |
A JavaMember is the base interface of several Java entities, such as
fields, methods, classes, initializers, and types.
|
| JavaMethod |
The JavaMethod is the compiled representation of a java method
or constructor, including the implicit <clinit> method.
|
| JavaModule |
A JavaModule is the compiled representation of a module in a module-info file.
|
| JavaModuleExports |
The exports statement of a module takes a qualified identifier indicating
the name of a package to be exported from the current module.
|
| JavaModuleOpens |
The opens statement of a module takes a qualified identifier indicating
the name of a package to be opened from the current module to other modules.
|
| JavaModuleProvides |
The provides statement takes a qualified identifier indicating
the name of a type which is a service interface.
|
| JavaModuleRequires |
The requires statement in a module takes a qualified identifier indicating
the name of a module on which the current module has a dependence.
|
| JavaModuleUses |
The uses statement takes a qualified identifier indicating
the name of a type which is a service interface.
|
| JavaPackage |
A JavaPackage is the compiled representation of a Java package.
|
| JavaType |
JavaType is the common base interface for JavaClass,
JavaTypeVariable, and JavaWildcardType.
|
| JavaTypeVariable |
The TypeVariable is a new concept in jdk 1.5.
|
| JavaVariable |
The JavaVariable is the compiled representation of a local
variable, including formal parameters.
|
| JavaWildcardType |
The WildcardType is a new concept in jdk 1.5.
|
| NodeBinding |
A client data object.
|
| SourceAnnotation |
An annotation (not to be confused with annotation type).
|
| SourceBlock |
The SourceCodeBlock represents code blocks for methods and
statements.
|
| SourceBlockElement |
A SourceElement that may be a child of a SourceBlock.
|
| SourceCatchParameter |
Represents a catch clause parameter, which is similar to a
SourceFormalParameter except the type can be the union of
several disjunct types.
|
| SourceClass |
A SourceClass is the syntactic (aka symbolic) representation of a
java class: classes, enums, interfaces, and annotation types.
|
| SourceClassBody |
A class body, sometimes called a class block.
|
| SourceClassInitializer |
The
SourceClassInitializer represents an initializer block. |
| SourceElement |
Every node in the java parse tree is a subinterface of a SourceElement.
|
| SourceEnumConstant |
An enum constant.
|
| SourceError |
An error found in the parse tree.
|
| SourceFieldDeclaration |
A field (or enum constant) declaration.
|
| SourceFieldVariable |
A field variable.
|
| SourceFile |
The SourceFile represents the root node for a complete Source
source file.
|
| SourceFile.FunctionEx<T,R,E extends java.lang.Exception> |
Helper functional interface for editInTransactionEx.
|
| SourceFormalParameter |
A formal parameter.
|
| SourceFormalParameterList |
A formal parameter list.
|
| SourceHasBlock |
A source element that has a block.
|
| SourceHasModifiers |
A SourceElement that may have modifiers.
|
| SourceHasName |
A SourceHasName has a SourceName (notice that this is a SourceToken
child) child.
|
| SourceHasType |
A SourceElement that has a type reference.
|
| SourceHasVersion |
A SourceHasVersion has a SourceVersion.
|
| SourceImport |
An import declaration.
|
| SourceInterfacesClause |
An extends and/or an implements clause.
|
| SourceLambdaParameter |
Represents one lambda expression parameter.
|
| SourceLexicalBlankline |
A whitespace token.
|
| SourceLexicalComment |
A comment token.
|
| SourceLexicalElement |
A lexical element is what the JLS refers to as an input element in
section 3.5.
|
| SourceLexicalSqlj | Deprecated
SQLJ statements are not supported anymore
|
| SourceLocalVariable |
A local variable or formal parameter.
|
| SourceLocalVariableDeclaration |
A local variable declaration.
|
| SourceMember |
The
SourceMember represents a member declaration for a type. |
| SourceMemberVariable |
A field (or enum constant) variable.
|
| SourceMethod |
A SourceMethod is the syntactic (aka symbolic) representation of a
java method or constructor declaration.
|
| SourceModifier |
A modifier string.
|
| SourceModule |
A module declaration based on source.
|
| SourceModuleBody |
The body of a module declaration.
|
| SourceModuleExports |
An exports statement in a module.
|
| SourceModuleExportsTo |
The to clause of an exports statement in a module.
|
| SourceModuleOpens |
An opens statement in a module.
|
| SourceModuleOpensTo |
The to clause of an opens statement in a module.
|
| SourceModuleProvides |
A provides statement in a module.
|
| SourceModuleProvidesWith |
The with clause of a provides statement in a module.
|
| SourceModuleRequires |
A requires statement in a module.
|
| SourceModuleUses |
A uses statement in a module.
|
| SourceName |
A name.
|
| SourcePackage |
The
SourcePackage. |
| SourceSuperclassClause |
An extends and/or an implements clause.
|
| SourceThrowsClause |
A throws clause for a method or constructor declaration.
|
| SourceTryResourcesElement |
A SourceElement that can be a child of a SourceTryResourcesList.
|
| SourceTryResourcesList |
The list that holds the try resource variables encompassing the parentheses and
everything inbetween them.
|
| SourceTypeArgument |
A type argument for a type reference.
|
| SourceTypeArgumentList |
Wraps SourceTypeArguments into a list.
|
| SourceTypeParameter |
A type parameter.
|
| SourceTypeReference |
A type reference.
|
| SourceVariable |
A SourceVariable is the syntactic (aka symbolic) representation of a
java variable, including: field variables, enum constant variables,
local variables, and formal parameters.
|
| SourceVariableDeclaration |
The common base interface for a field declaration and a local
variable declaration.
|
| SourceVersion |
A version string.
|
| UnresolvedType |
Information about a JavaHasType, useful when
JavaHasType.getResolvedType() returns null.
|
| Class | Description |
|---|---|
| SourceToken |
Represents one token in the SourceFile.
|
| Enum | Description |
|---|---|
| SourceFile.ElementAtMask |