aboutsummaryrefslogtreecommitdiffstats
path: root/javaparser-core/src/main/java/com/github/javaparser/ast/observer/Observable.java
diff options
context:
space:
mode:
authorFederico Tomassetti <federico@tomassetti.me>2016-12-18 10:36:12 +0100
committerFederico Tomassetti <federico@tomassetti.me>2016-12-18 10:36:12 +0100
commit76f5dc9d043237e8ada0e6597d6c8d48b67f6d8f (patch)
treef9acdcf92b9e41f0263461e270579ad140d79481 /javaparser-core/src/main/java/com/github/javaparser/ast/observer/Observable.java
parent19fb5733c9d71125ee8e9f9971252d223303cc8a (diff)
downloadplatform_external_javaparser-76f5dc9d043237e8ada0e6597d6c8d48b67f6d8f.tar.gz
platform_external_javaparser-76f5dc9d043237e8ada0e6597d6c8d48b67f6d8f.tar.bz2
platform_external_javaparser-76f5dc9d043237e8ada0e6597d6c8d48b67f6d8f.zip
issue652: add copyright notice where missing
Diffstat (limited to 'javaparser-core/src/main/java/com/github/javaparser/ast/observer/Observable.java')
-rw-r--r--javaparser-core/src/main/java/com/github/javaparser/ast/observer/Observable.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/javaparser-core/src/main/java/com/github/javaparser/ast/observer/Observable.java b/javaparser-core/src/main/java/com/github/javaparser/ast/observer/Observable.java
index 13182ecc9..ce0f926bf 100644
--- a/javaparser-core/src/main/java/com/github/javaparser/ast/observer/Observable.java
+++ b/javaparser-core/src/main/java/com/github/javaparser/ast/observer/Observable.java
@@ -1,3 +1,24 @@
+/*
+ * Copyright (C) 2007-2010 JĂșlio Vilmar Gesser.
+ * Copyright (C) 2011, 2013-2016 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
+ *
+ * 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.
+ */
+
package com.github.javaparser.ast.observer;
/**