| matozoid | 2cab70d | 2013-09-16 13:31:33 +0200 | [diff] [blame] | 1 | # Java 1.7 parser and Abstract Syntax Tree.
|
| 2 |
|
| 3 | Copyright (C) 2007 Júlio Vilmar Gesser
|
| 4 |
|
| 5 | This program is free software: you can redistribute it and/or modify
|
| 6 | it under the terms of the GNU Lesser General Public License as published by
|
| 7 | the Free Software Foundation, either version 3 of the License, or
|
| 8 | (at your option) any later version.
|
| 9 |
|
| 10 | This program is distributed in the hope that it will be useful,
|
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 13 | GNU Lesser General Public License for more details.
|
| 14 |
|
| 15 | You should have received a copy of the GNU Lesser General Public License
|
| 16 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
| matozoid | 2d4deca | 2011-10-30 14:35:59 +0100 | [diff] [blame] | 17 |
|
| Donny Nadolny | 19c2338 | 2013-09-14 14:33:45 -0400 | [diff] [blame] | 18 | This package contains a Java 1.7 Parser with AST generation and visitor support.
|
| matozoid | 2cab70d | 2013-09-16 13:31:33 +0200 | [diff] [blame] | 19 | The AST records the source code structure, javadoc and comments.
|
| matozoid | 2d4deca | 2011-10-30 14:35:59 +0100 | [diff] [blame] | 20 |
|
| matozoid | 2cab70d | 2013-09-16 13:31:33 +0200 | [diff] [blame] | 21 | This parser is based on Sreenivasa Viswanadha's Java 1.5 parser.
|
| matozoid | 2d4deca | 2011-10-30 14:35:59 +0100 | [diff] [blame] | 22 |
|
| matozoid | 2cab70d | 2013-09-16 13:31:33 +0200 | [diff] [blame] | 23 | The project was originally hosted at http://code.google.com/p/javaparser/ but
|
| 24 | seemed dead. This repository at https://github.com/matozoid/javaparser keeps
|
| 25 | the code alive.
|
| Federico Tomassetti | 505d097 | 2014-07-19 23:21:04 +0100 | [diff] [blame] | 26 |
|
| 27 | Javadoc is available at [http://matozoid.github.io/javaparser/javadoc-current/](http://matozoid.github.io/javaparser/javadoc-current/)
|