blob: 307f0861bd5fabd8b204c093a334bd3fe84fe3e3 [file] [log] [blame] [view]
matozoid2cab70d2013-09-16 13:31:33 +02001# Java 1.7 parser and Abstract Syntax Tree.
2
3Copyright (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/>.
matozoid2d4deca2011-10-30 14:35:59 +010017
Donny Nadolny19c23382013-09-14 14:33:45 -040018This package contains a Java 1.7 Parser with AST generation and visitor support.
matozoid2cab70d2013-09-16 13:31:33 +020019The AST records the source code structure, javadoc and comments.
matozoid2d4deca2011-10-30 14:35:59 +010020
matozoid2cab70d2013-09-16 13:31:33 +020021This parser is based on Sreenivasa Viswanadha's Java 1.5 parser.
matozoid2d4deca2011-10-30 14:35:59 +010022
matozoid2cab70d2013-09-16 13:31:33 +020023The project was originally hosted at http://code.google.com/p/javaparser/ but
24seemed dead. This repository at https://github.com/matozoid/javaparser keeps
25the code alive.
Federico Tomassetti505d0972014-07-19 23:21:04 +010026
27Javadoc is available at [http://matozoid.github.io/javaparser/javadoc-current/](http://matozoid.github.io/javaparser/javadoc-current/)