Class | Description |
---|---|
ArrayBracketPair |
In, for example,
int[] a[]; there are two ArrayBracketPair objects,
one for the [] after int, one for the [] after a. |
ArrayCreationLevel |
In
new int[1][2]; there are two ArrayCreationLevel objects,
the first one contains the expression "1",
the second the expression "2". |
CompilationUnit |
This class represents the entire compilation unit.
|
Node |
Abstract class for all nodes of the AST.
|
NodeList<N extends Node> |
A list of nodes.
|
PackageDeclaration |
This class represents the package declaration.
|
UserDataKey<T> |
A key to a piece of user data associated with a
Node at runtime. |
Enum | Description |
---|---|
AccessSpecifier |
Access specifier.
|
Modifier |
Copyright © 2007–2016. All rights reserved.