]> source.dussan.org Git - javassist.git/commitdiff
Added copyright info 26/head
authorMårten Hedborg <marten.hedborg@gcinnober.com>
Mon, 16 Mar 2015 10:45:40 +0000 (11:45 +0100)
committerMårten Hedborg <marten.hedborg@gcinnober.com>
Mon, 16 Mar 2015 10:45:40 +0000 (11:45 +0100)
src/main/javassist/tools/Callback.java
src/test/javassist/tools/CallbackTest.java

index 9672891395a9e5d7fd04d8ae747c41b8146c07e5..26a4200eb8c4deddafaa90543d637a1224faa224 100644 (file)
@@ -1,3 +1,19 @@
+/*
+ * Javassist, a Java-bytecode translator toolkit.
+ * Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.
+ *
+ * The contents of this file are subject to the Mozilla Public License Version
+ * 1.1 (the "License"); you may not use this file except in compliance with
+ * the License.  Alternatively, the contents of this file may be used under
+ * the terms of the GNU Lesser General Public License Version 2.1 or later,
+ * or the Apache License Version 2.0.
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+ * for the specific language governing rights and limitations under the
+ * License.
+ */
+
 package javassist.tools;
 
 import javassist.CannotCompileException;
@@ -29,6 +45,8 @@ import java.util.UUID;
  *     }
  * });
  * }</pre>
+ *
+ * @author Marten Hedborg
  */
 public abstract class Callback {
 
index a37ee61d1c26df7c96e4273f6bf929b581607f18..96632bda902398c5d024bd2d8346bd41741ba742 100644 (file)
@@ -33,7 +33,7 @@ public class CallbackTest extends TestCase {
             }
         });
 
-        // Change class and invoke method();
+        // Change class and invoke method;
         classToChange.toClass();
         new DummyClass().dummyMethod();
     }