MCPcopy Index your code
hub / github.com/javaparser/javaparser

github.com/javaparser/javaparser @javaparser-parent-3.28.2 sqlite

repository ↗ · DeepWiki ↗ · release javaparser-parent-3.28.2 ↗
19,468 symbols 97,203 edges 1,992 files 3,690 documented · 19% 1 cross-repo links
README

JavaParser

Maven Central Build Status Coverage Status Join the chat at https://gitter.im/javaparser/javaparser License LGPL-3/Apache-2.0 DOI

This project contains a set of libraries implementing a Java 1.0 - Java 25 Parser with advanced analysis functionalities.

Our main site is at JavaParser.org

Sponsors

Support this project by becoming a sponsor! Become a sponsor. Your donation will help the project live and grow successfully.

Javaparser uses OpenCollective to gather money.

Thank you to our sponsors!

Setup

The project binaries are available in Maven Central.

We strongly advise users to adopt Maven, Gradle or another build system for their projects. If you are not familiar with them we suggest taking a look at the maven quickstart projects (javaparser-maven-sample, javasymbolsolver-maven-sample).

Just add the following to your maven configuration or tailor to your own dependency management system.

Please refer to the Migration Guide when upgrading from 2.5.1 to 3.0.0+

Maven:

<dependency>
    <groupId>com.github.javaparser</groupId>
    <artifactId>javaparser-symbol-solver-core</artifactId>
    <version>3.28.2</version>
</dependency>

Gradle:

implementation 'com.github.javaparser:javaparser-symbol-solver-core:3.28.2'

Since Version 3.5.10, the JavaParser project includes the JavaSymbolSolver. While JavaParser generates an Abstract Syntax Tree, JavaSymbolSolver analyzes that AST and is able to find the relation between an element and its declaration (e.g. for a variable name it could be a parameter of a method, providing information about its type, position in the AST, ect).

Using the dependency above will add both JavaParser and JavaSymbolSolver to your project. If you only need the core functionality of parsing Java source code in order to traverse and manipulate the generated AST, you can reduce your projects boilerplate by only including JavaParser to your project:

Maven:

<dependency>
    <groupId>com.github.javaparser</groupId>
    <artifactId>javaparser-core</artifactId>
    <version>3.28.2</version>
</dependency>

Gradle:

implementation 'com.github.javaparser:javaparser-core:3.28.2'

Since version 3.6.17 the AST can be serialized to JSON. There is a separate module for this:

Maven:

<dependency>
    <groupId>com.github.javaparser</groupId>
    <artifactId>javaparser-core-serialization</artifactId>
    <version>3.28.2</version>
</dependency>

Gradle:

implementation 'com.github.javaparser:javaparser-core-serialization:3.28.2'

How To Compile Sources

If you checked out the project's source code from GitHub, you can build the project with maven using:

./mvnw clean install

If you want to generate the packaged jar files from the source files, you run the following maven command:

./mvnw package

NOTE the jar files for the two modules can be found in: - javaparser/javaparser-core/target/javaparser-core-\<version\>.jar - javaparser-symbol-solver-core/target/javaparser-symbol-solver-core-\<version\>.jar

If you checkout the sources and want to view the project in an IDE, it is best to first generate some of the source files; otherwise you will get many compilation complaints in the IDE. (./mvnw clean install already does this for you.)

./mvnw javacc:javacc

If you modify the code of the AST nodes, specifically if you add or remove fields or node classes, the code generators will update a lot of code for you. The run_metamodel_generator.sh script will rebuild the metamodel, which is used by the code generators which are run by run_core_generators.sh Make sure that javaparser-core at least compiles before you run these.

Note: for Eclipse IDE follow the steps described in the wiki: https://github.com/javaparser/javaparser/wiki/Eclipse-Project-Setup-Guide

More information

JavaParser.org is the main information site or see the wiki page https://github.com/javaparser/javaparser/wiki.

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.

For details about the Apache License please refer to LICENSE.APACHE.

Extension points exported contracts — how you extend this code

ParseStart (Interface)
The start production for JavaParser. Tells JavaParser what piece of Java code it can expect. For example, COMPILATION_UN [30 …
javaparser-core/src/main/java/com/github/javaparser/ParseStart.java
SymbolResolutionCapability (Interface)
Allows for an implementing declaration type to support solving for field (symbol) usage. [61 implementers]
javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/core/resolution/SymbolResolutionCapability.java
TypeSolver (Interface)
An element able to find TypeDeclaration from their name. TypeSolvers are organized in hierarchies. @author Federico Tom [11 …
javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-model/com/github/javaparser/symbolsolver/model/resolution/TypeSolver.java
SymbolDeclarator (Interface)
@author Federico Tomassetti [9 implementers]
javaparser-core/src/main/java/com/github/javaparser/resolution/SymbolDeclarator.java
TypeVariableResolutionCapability (Interface)
(no doc) [19 implementers]
javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/core/resolution/TypeVariableResolutionCapability.java
HasAccessLevel (Interface)
Anything which can have an AccessLevel. @author Federico Tomassetti [21 implementers]
javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-model/com/github/javaparser/symbolsolver/model/declarations/HasAccessLevel.java
ResolvedType (Interface)
A resolved type. It could be a primitive type or a reference type (enum, class, interface) [14 implementers]
javaparser-core/src/main/java/com/github/javaparser/resolution/types/ResolvedType.java
MethodUsageResolutionCapability (Interface)
(no doc) [45 implementers]
javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/core/resolution/MethodUsageResolutionCapability.java

Core symbols most depended-on inside this repo

get
called by 5703
javaparser-core/src/main/java/com/github/javaparser/resolution/cache/Cache.java
accept
called by 3442
javaparser-core/src/main/java/com/github/javaparser/ast/visitor/Visitable.java
getComment
called by 2735
javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/SwitchNode.java
size
called by 1342
javaparser-core/src/main/java/com/github/javaparser/resolution/cache/Cache.java
print
called by 1323
javaparser-core/src/main/java/com/github/javaparser/printer/Printer.java
visit
called by 1173
javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/VoidVisitor.java
add
called by 959
javaparser-core/src/main/java/com/github/javaparser/ast/NodeList.java
parse
called by 768
javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ParseStart.java

Shape

Method 17,200
Class 1,973
Interface 217
Enum 78

Languages

Java100%

Modules by API surface

javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/ASTParser.java630 symbols
javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/ASTParser.java627 symbols
javaparser-core-testing/src/test/resources/com/github/javaparser/issue_samples/issue_2627/Ops_lf.java233 symbols
javaparser-core-testing/src/test/resources/com/github/javaparser/issue_samples/issue_2627/Ops_crlf.java233 symbols
javaparser-core-testing/src/test/resources/com/github/javaparser/issue_samples/issue_2627/Ops.java233 symbols
javaparser-core/src/main/java/com/github/javaparser/ast/expr/Expression.java177 symbols
javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/naming/NameLogicTest.java131 symbols
javaparser-core-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/LexicalPreservingPrinterTest.java128 symbols
javaparser-core-testing/src/test/java/com/github/javaparser/ast/visitor/GenericVisitorWithDefaultsTest.java109 symbols
javaparser-core-testing/src/test/java/com/github/javaparser/ast/visitor/VoidVisitorWithDefaultsTest.java108 symbols
javaparser-core-testing/src/test/java/com/github/javaparser/ast/visitor/NoCommentHashCodeVisitorTest.java102 symbols
javaparser-core-testing/src/test/java/com/github/javaparser/ast/visitor/GenericVisitorAdapterTest.java102 symbols

Used by 1 indexed graphs manifest dependencies, hub-wide

Dependencies from manifests, versioned

com.github.javaparser:javaparser-core
com.github.javaparser:javaparser-symbol-solver-core
com.google.guava:guava33.6.0-jre · 1×
jakarta.json:jakarta.json-api2.1.3 · 1×
net.bytebuddy:byte-buddy-agent
org.assertj:assertj-core3.27.7 · 1×
org.checkerframework:checker-qual3.55.1 · 1×
org.eclipse.parsson:parsson1.1.9 · 1×
org.hamcrest:hamcrest3.0 · 1×

For agents

$ claude mcp add javaparser \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact