# javaparser
**Repository Path**: mirrors_Gottox/javaparser
## Basic Information
- **Project Name**: javaparser
- **Description**: Java 1.8 Parser and Abstract Syntax Tree for Java –
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-09-24
- **Last Updated**: 2026-03-29
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
## Java Parser and Abstract Syntax Tree
This package contains a Java 1.8 Parser with AST generation and visitor support.
The AST records the source code structure, javadoc and comments. It is also possible to change the AST nodes or create new ones to modify the source code.
[](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.javaparser%22%20AND%20a%3A%22javaparser-core%22)
[](https://travis-ci.org/javaparser/javaparser)
[](https://coveralls.io/github/javaparser/javaparser?branch=master)
[](https://gitter.im/javaparser/javaparser?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
## Features
* Light weight
* Performant
* Easy to use
* Modifiable AST
* Create AST from scratch
* Support of comments
## Dependency Management
The project binaries are available in Maven Central. Just add the following to your maven configuration or tailor to your own dependency management system.
Current 1.8 Release
```xml
com.github.javaparser
javaparser-core
2.5.1
```
Final 1.7 Release
```xml
com.google.code.javaparser
javaparser
1.0.11
```
## How To Compile Sources
If you have checkout the project from GitHub you can build the project with maven using:
```
mvn clean install
```
If you checkout the sources and want to view the project in an IDE, it is best to generate the additional source files; otherwise you will get many compilation complaints in the IDE
```
mvn javacc:javacc
```
## Manual
Examples of how to use the library can be found on the [Manual](https://github.com/javaparser/javaparser/wiki/Manual) page of the wiki
## Troubleshooting
In the first instance try the [wiki](https://github.com/javaparser/javaparser/wiki)
In the second instance please feel free to open an [issue](https://github.com/javaparser/javaparser/issues).
## Javadoc
The libraries javadoc can be found [here](http://www.javadoc.io/doc/com.github.javaparser/javaparser-core/)
## History
This parser is based on work by Sreenivasa Viswanadha and Júlio Vilmar Gesser. The original project, now inactive, was originally hosted at [Google Code](http://code.google.com/p/javaparser/) and supported only parsing Java 1.5.
The project now supports parsing Java 1.8 and aims to continue support for features in future versions of the Java language.
## Related projects
[JavaSymbolSolver](https://github.com/javaparser/javasymbolsolver) is a project from the same committers working on JavaParser.
You can use it to calculate the type of JavaParser expressions and connecting references with their declarations.
From JavaParser other projects have been derived:
* [Walkmod](http://walkmod.com/): a tool to automatically correct violations of code conventions
* [jooby spec](http://jooby.org/doc/spec): analyze and exports [jooby routes](http://jooby.org) to [raml](http://raml.org) and [Swagger](http://swagger.io)
## Credits
This project has been maintained thanks to the joint efforts of many contributors: we are extremely grateful to all of them.
In particular we are thankful to the contributions we received by the [Walkmod](http://walkmod.com/) project which permitted to finalize support for Java 8. The author granted us the permissions to release that code also under the Apache License and we have greatly appreciated that.
## License
JavaParser is available either under the terms of the LGPL License or the Apache License. You as the user are entitled to choose the terms under which adopt JavaParser.
For details about the LGPL License please refer to [LICENSE.LGPL](ttps://github.com/javaparser/javaparser/blob/master/LICENSE.LGPL).
For details about the Apache License please refer to [LICENSE.APACHE](ttps://github.com/javaparser/javaparser/blob/master/LICENSE.APACHE).