aboutsummaryrefslogtreecommitdiffstats
path: root/javaparser-core/src/main/java/com/github/javaparser/ast/expr/NormalAnnotationExpr.java
diff options
context:
space:
mode:
authorFederico Tomassetti <federico@tomassetti.me>2015-07-25 15:05:25 +0200
committerFederico Tomassetti <federico@tomassetti.me>2015-07-25 15:05:25 +0200
commitedc1e4cc00cc9feceef094cc24c472abffe5aec2 (patch)
tree188818e0ef2d1c4512d0ee23b40bd6a4358f3724 /javaparser-core/src/main/java/com/github/javaparser/ast/expr/NormalAnnotationExpr.java
parentee6a48af834e90baa5788d55d867b90e73c8bfab (diff)
downloadplatform_external_javaparser-edc1e4cc00cc9feceef094cc24c472abffe5aec2.tar.gz
platform_external_javaparser-edc1e4cc00cc9feceef094cc24c472abffe5aec2.tar.bz2
platform_external_javaparser-edc1e4cc00cc9feceef094cc24c472abffe5aec2.zip
update all source files
Diffstat (limited to 'javaparser-core/src/main/java/com/github/javaparser/ast/expr/NormalAnnotationExpr.java')
-rw-r--r--javaparser-core/src/main/java/com/github/javaparser/ast/expr/NormalAnnotationExpr.java17
1 files changed, 9 insertions, 8 deletions
diff --git a/javaparser-core/src/main/java/com/github/javaparser/ast/expr/NormalAnnotationExpr.java b/javaparser-core/src/main/java/com/github/javaparser/ast/expr/NormalAnnotationExpr.java
index cc8211b5e..2b2adfd72 100644
--- a/javaparser-core/src/main/java/com/github/javaparser/ast/expr/NormalAnnotationExpr.java
+++ b/javaparser-core/src/main/java/com/github/javaparser/ast/expr/NormalAnnotationExpr.java
@@ -3,21 +3,22 @@
* Copyright (C) 2011, 2013-2015 The JavaParser Team.
*
* This file is part of JavaParser.
+ *
+ * JavaParser can be used either under the terms of
+ * a) the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * b) the terms of the Apache License
*
- * JavaParser is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
+ * You should have received a copy of both licenses in LICENCE.LGPL and
+ * LICENCE.APACHE. Please refer to those files for details.
*
* JavaParser is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with JavaParser. If not, see <http://www.gnu.org/licenses/>.
*/
-
+
package com.github.javaparser.ast.expr;
import com.github.javaparser.ast.visitor.GenericVisitor;