Android Wear 9.0.0 Release 4 (PWDG.190204.002.A2)
Snap for 4632767 from 1afe9e0652b9b53edade5aa276162abe27b32a67 to pi-release

Change-Id: Ibe65883e94ed5a7272dff3f100393987a1cf3da2
tree: 6789ec288d344cf5fd5d057bcf1efc9545b1af28
  1. .idea/
  2. dev-files/
  3. javaparser-core/
  4. javaparser-core-generators/
  5. javaparser-metamodel-generator/
  6. javaparser-symbol-solver-core/
  7. javaparser-symbol-solver-logic/
  8. javaparser-symbol-solver-model/
  9. javaparser-symbol-solver-testing/
  10. javaparser-testing/
  11. .gitignore
  12. .travis.yml
  13. appveyor.yml
  14. changelog.md
  15. CONTRIBUTING.md
  16. javaparser-parent.iml
  17. LICENSE
  18. LICENSE.APACHE
  19. LICENSE.GPL
  20. LICENSE.LGPL
  21. pom.xml
  22. readme.md
  23. run_core_generators.sh
  24. run_metamodel_generator.sh
readme.md

JavaParser

Maven Central Build Status Coverage Status Join the chat at https://gitter.im/javaparser/javaparser

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

Our main site is at JavaParser.org

Setup

The project binaries are available in Maven Central.

We strongly advises 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.5.15</version>
</dependency>

Gradle:

compile 'com.github.javaparser:javaparser-symbol-solver-core:3.5.15'

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.5.15</version>
</dependency>

Gradle:

compile 'com.github.javaparser:javaparser-core:3.5.15'

How To Compile Sources

If you checked out 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 first generate some of the source files; otherwise you will get many compilation complaints in the IDE. (mvn clean install already does this for you.)

mvn 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.

More information

JavaParser.org is the main information site.

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.