Java Source Code AST
Jump to navigation
Jump to search
A Java Source Code AST is a source code AST for Java code.
References
=
- https://www.vogella.com/tutorials/EclipseJDT/article.html#abstract-syntax-tree-ast
- QUOTE: ... This tutorial ... also explains the Abstract Syntax Tree (AST) and the Java model in Eclipse. ...
The AST is a detailed tree representation of the Java source code. The AST defines an API to modify, create, read and delete source code. The main package for the AST is the
org.eclipse.jdt.core.dom
package and is located in theorg.eclipse.jdt.core plug-in
. Each Java source element is represented as a subclass of the ASTNode class. Each specific AST node provides specific information about the object it represents.
- QUOTE: ... This tutorial ... also explains the Abstract Syntax Tree (AST) and the Java model in Eclipse. ...
...