]> source.dussan.org Git - javassist.git/commitdiff
updated the copyright notices.
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Mon, 4 Jun 2007 03:11:13 +0000 (03:11 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Mon, 4 Jun 2007 03:11:13 +0000 (03:11 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@382 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

175 files changed:
License.html
Readme.html
build.xml
src/main/javassist/ByteArrayClassPath.java
src/main/javassist/CannotCompileException.java
src/main/javassist/ClassClassPath.java
src/main/javassist/ClassMap.java
src/main/javassist/ClassPath.java
src/main/javassist/ClassPool.java
src/main/javassist/ClassPoolTail.java
src/main/javassist/CodeConverter.java
src/main/javassist/CtArray.java
src/main/javassist/CtBehavior.java
src/main/javassist/CtClass.java
src/main/javassist/CtClassType.java
src/main/javassist/CtConstructor.java
src/main/javassist/CtField.java
src/main/javassist/CtMember.java
src/main/javassist/CtMethod.java
src/main/javassist/CtNewClass.java
src/main/javassist/CtNewConstructor.java
src/main/javassist/CtNewMethod.java
src/main/javassist/CtNewNestedClass.java
src/main/javassist/CtNewWrappedConstructor.java
src/main/javassist/CtNewWrappedMethod.java
src/main/javassist/CtPrimitiveType.java
src/main/javassist/Loader.java
src/main/javassist/LoaderClassPath.java
src/main/javassist/Modifier.java
src/main/javassist/NotFoundException.java
src/main/javassist/SerialVersionUID.java
src/main/javassist/Translator.java
src/main/javassist/URLClassPath.java
src/main/javassist/bytecode/AccessFlag.java
src/main/javassist/bytecode/AnnotationDefaultAttribute.java
src/main/javassist/bytecode/AnnotationsAttribute.java
src/main/javassist/bytecode/AttributeInfo.java
src/main/javassist/bytecode/BadBytecode.java
src/main/javassist/bytecode/ByteArray.java
src/main/javassist/bytecode/Bytecode.java
src/main/javassist/bytecode/ClassFile.java
src/main/javassist/bytecode/ClassFileWriter.java
src/main/javassist/bytecode/CodeAnalyzer.java
src/main/javassist/bytecode/CodeAttribute.java
src/main/javassist/bytecode/CodeIterator.java
src/main/javassist/bytecode/ConstPool.java
src/main/javassist/bytecode/ConstantAttribute.java
src/main/javassist/bytecode/DeprecatedAttribute.java
src/main/javassist/bytecode/Descriptor.java
src/main/javassist/bytecode/DuplicateMemberException.java
src/main/javassist/bytecode/EnclosingMethodAttribute.java
src/main/javassist/bytecode/ExceptionTable.java
src/main/javassist/bytecode/ExceptionsAttribute.java
src/main/javassist/bytecode/FieldInfo.java
src/main/javassist/bytecode/InnerClassesAttribute.java
src/main/javassist/bytecode/LineNumberAttribute.java
src/main/javassist/bytecode/LocalVariableAttribute.java
src/main/javassist/bytecode/LongVector.java
src/main/javassist/bytecode/MethodInfo.java
src/main/javassist/bytecode/Mnemonic.java
src/main/javassist/bytecode/Opcode.java
src/main/javassist/bytecode/ParameterAnnotationsAttribute.java
src/main/javassist/bytecode/SignatureAttribute.java
src/main/javassist/bytecode/SourceFileAttribute.java
src/main/javassist/bytecode/StackMapTable.java
src/main/javassist/bytecode/SyntheticAttribute.java
src/main/javassist/bytecode/annotation/AnnotationImpl.java
src/main/javassist/bytecode/annotation/AnnotationsWriter.java
src/main/javassist/bytecode/stackmap/BasicBlock.java
src/main/javassist/bytecode/stackmap/Liveness.java
src/main/javassist/bytecode/stackmap/MapMaker.java
src/main/javassist/bytecode/stackmap/Tracer.java
src/main/javassist/bytecode/stackmap/TypeData.java
src/main/javassist/bytecode/stackmap/TypeTag.java
src/main/javassist/bytecode/stackmap/TypedBlock.java
src/main/javassist/compiler/AccessorMaker.java
src/main/javassist/compiler/CodeGen.java
src/main/javassist/compiler/CompileError.java
src/main/javassist/compiler/Javac.java
src/main/javassist/compiler/JvstCodeGen.java
src/main/javassist/compiler/JvstTypeChecker.java
src/main/javassist/compiler/KeywordTable.java
src/main/javassist/compiler/Lex.java
src/main/javassist/compiler/MemberCodeGen.java
src/main/javassist/compiler/MemberResolver.java
src/main/javassist/compiler/NoFieldException.java
src/main/javassist/compiler/Parser.java
src/main/javassist/compiler/ProceedHandler.java
src/main/javassist/compiler/SymbolTable.java
src/main/javassist/compiler/SyntaxError.java
src/main/javassist/compiler/TokenId.java
src/main/javassist/compiler/TypeChecker.java
src/main/javassist/compiler/ast/ASTList.java
src/main/javassist/compiler/ast/ASTree.java
src/main/javassist/compiler/ast/ArrayInit.java
src/main/javassist/compiler/ast/AssignExpr.java
src/main/javassist/compiler/ast/BinExpr.java
src/main/javassist/compiler/ast/CallExpr.java
src/main/javassist/compiler/ast/CastExpr.java
src/main/javassist/compiler/ast/CondExpr.java
src/main/javassist/compiler/ast/Declarator.java
src/main/javassist/compiler/ast/DoubleConst.java
src/main/javassist/compiler/ast/Expr.java
src/main/javassist/compiler/ast/FieldDecl.java
src/main/javassist/compiler/ast/InstanceOfExpr.java
src/main/javassist/compiler/ast/IntConst.java
src/main/javassist/compiler/ast/Keyword.java
src/main/javassist/compiler/ast/Member.java
src/main/javassist/compiler/ast/MethodDecl.java
src/main/javassist/compiler/ast/NewExpr.java
src/main/javassist/compiler/ast/Pair.java
src/main/javassist/compiler/ast/Stmnt.java
src/main/javassist/compiler/ast/StringL.java
src/main/javassist/compiler/ast/Symbol.java
src/main/javassist/compiler/ast/Variable.java
src/main/javassist/compiler/ast/Visitor.java
src/main/javassist/convert/TransformAccessArrayField.java
src/main/javassist/convert/TransformAfter.java
src/main/javassist/convert/TransformBefore.java
src/main/javassist/convert/TransformCall.java
src/main/javassist/convert/TransformFieldAccess.java
src/main/javassist/convert/TransformNew.java
src/main/javassist/convert/TransformReadField.java
src/main/javassist/convert/TransformWriteField.java
src/main/javassist/convert/Transformer.java
src/main/javassist/expr/Cast.java
src/main/javassist/expr/ConstructorCall.java
src/main/javassist/expr/Expr.java
src/main/javassist/expr/ExprEditor.java
src/main/javassist/expr/FieldAccess.java
src/main/javassist/expr/Handler.java
src/main/javassist/expr/Instanceof.java
src/main/javassist/expr/MethodCall.java
src/main/javassist/expr/NewArray.java
src/main/javassist/expr/NewExpr.java
src/main/javassist/runtime/Cflow.java
src/main/javassist/runtime/Desc.java
src/main/javassist/runtime/DotClass.java
src/main/javassist/runtime/Inner.java
src/main/javassist/scopedpool/ScopedClassPool.java
src/main/javassist/scopedpool/ScopedClassPoolFactory.java
src/main/javassist/scopedpool/ScopedClassPoolFactoryImpl.java
src/main/javassist/scopedpool/ScopedClassPoolRepository.java
src/main/javassist/scopedpool/ScopedClassPoolRepositoryImpl.java
src/main/javassist/scopedpool/SoftValueHashMap.java
src/main/javassist/tools/Dump.java
src/main/javassist/tools/reflect/CannotCreateException.java
src/main/javassist/tools/reflect/CannotInvokeException.java
src/main/javassist/tools/reflect/CannotReflectException.java
src/main/javassist/tools/reflect/ClassMetaobject.java
src/main/javassist/tools/reflect/Compiler.java
src/main/javassist/tools/reflect/Loader.java
src/main/javassist/tools/reflect/Metalevel.java
src/main/javassist/tools/reflect/Metaobject.java
src/main/javassist/tools/reflect/Reflection.java
src/main/javassist/tools/reflect/Sample.java
src/main/javassist/tools/rmi/AppletServer.java
src/main/javassist/tools/rmi/ObjectImporter.java
src/main/javassist/tools/rmi/ObjectNotFoundException.java
src/main/javassist/tools/rmi/Proxy.java
src/main/javassist/tools/rmi/RemoteException.java
src/main/javassist/tools/rmi/RemoteRef.java
src/main/javassist/tools/rmi/Sample.java
src/main/javassist/tools/rmi/StubGenerator.java
src/main/javassist/tools/web/BadHttpRequest.java
src/main/javassist/tools/web/Viewer.java
src/main/javassist/tools/web/Webserver.java
src/main/javassist/util/HotSwapper.java
src/main/javassist/util/proxy/FactoryHelper.java
src/main/javassist/util/proxy/MethodFilter.java
src/main/javassist/util/proxy/MethodHandler.java
src/main/javassist/util/proxy/ProxyFactory.java
src/main/javassist/util/proxy/ProxyObject.java
src/main/javassist/util/proxy/RuntimeSupport.java
src/main/javassist/util/proxy/SerializedProxy.java

index 3a9d52f9097dc2d74c6ade92217a261b88567cb4..8f7f46dd9f6010e99e19249309c2f4e50b3eabf2 100644 (file)
@@ -353,7 +353,7 @@ MISCELLANEOUS.</B>
   <P>The Original Code is Javassist. 
   <P>The Initial Developer of the Original Code is Shigeru Chiba. 
   Portions created by the Initial Developer are<BR>&nbsp;
-  Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved. 
+  Copyright (C) 1999-2007 Shigeru Chiba. All Rights Reserved. 
   <P>Contributor(s): ______________________________________. 
 
   <P>Alternatively, the contents of this file may be used under the terms of
index 8f9a0f9f66f4038cd6e596f4ec0d9a4a41a1013e..a2847fe79d8c16ec4ce6c66cfbeadb33e093fb55 100644 (file)
@@ -284,6 +284,7 @@ see javassist.Dump.
 <p>-version 3.6
 
 <ul>
+       <li>The stack map table introduced since Java 6 has been supported.
     <li><a href="http://jira.jboss.com/jira/browse/JASSIST-33">JIRA JASSIST-33</a> has been fixed.
 </ul>
 
index 8754fba504676686be81752576b9253fa6314d63..7d1868112c35f1392747ee0d631636581441de42 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -6,7 +6,7 @@
 
 <project name="javassist" default="jar" basedir=".">
 
-  <property name="dist-version" value="javassist-3.4"/>
+  <property name="dist-version" value="javassist-3.6"/>
 
   <property environment="env"/>
   <property name="target.jar" value="javassist.jar"/>
@@ -127,7 +127,7 @@ to ${build.classes.dir}.</echo>
            windowtitle="Javassist API">
       <doctitle><![CDATA[<h1>Javassist</h1>]]></doctitle>
       <bottom><![CDATA[<i>Javassist, a Java-bytecode translator toolkit.<br>
-Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.</i>]]></bottom>
+Copyright (C) 1999-2007 Shigeru Chiba. All Rights Reserved.</i>]]></bottom>
     </javadoc>
   </target>
 
index 54b17a0e9b56976163f0cdf1e831454b969c60f5..f09f81fdf0de25888d29f08cf5ee7194769c84f0 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 7ea97b0f2da32ebccda729454a4cf09fe61695c4..35ad6e707a654a8301efbef8d08ce2e3060dae1b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 5217396b1fc2073b9c4044cf068caba8a6f07563..c9925d81506be71da517fa118b3f18b8e598201b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 6e8d3dcfebdf3bf013d7b0fb67730dcd7407a3ef..98e5cc9ea854d5c1f7a7096f27b5537536ac33e9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 0da29aae636121d5d1b6265f1864f4330ba0123c..d34b2791a4cab4a1de43fb0a2e3e57c7ba6f6238 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 51220a3e2d6d1577ea11b6ac9c145d0bb24adf5f..aff38282bccf6f9a86e38a9ffc53a39f2ff60a3a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index db75f282a6c11036d12cd306b11be2c3f811dccb..fc21c0a3a75de7bef06dcf00a6b0ad521a8e954f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index df01cc6cafb5689411a39edf2730f7429537defe..74dcb8ffacae0addd361a84e04af71faba8b9f75 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
@@ -504,7 +504,7 @@ public class CodeConverter {
      * as array access replacements.
      *
      * @author <a href="kabir.khan@jboss.com">Kabir Khan</a>
-     * @version $Revision: 1.12 $
+     * @version $Revision: 1.13 $
      */
     public interface ArrayAccessReplacementMethodNames
     {
@@ -613,7 +613,7 @@ public class CodeConverter {
      * accesses to array elements.
      *
      * @author <a href="kabir.khan@jboss.com">Kabir Khan</a>
-     * @version $Revision: 1.12 $
+     * @version $Revision: 1.13 $
      */
     public static class DefaultArrayAccessReplacementMethodNames
         implements ArrayAccessReplacementMethodNames
index 328b1bc9fb6e5359c421694a70971e3295521826..e46f24b548f685aca28f90433fa02e99d050cc17 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index f5e27ff4cbae2b30fe32528f6be06ce9647d066f..2be691f3f4e9177f55adc224a4b83a18967bbbb6 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 070c899b43219a99f1907bf488b427b3c2221df0..62616c49075169bf0c286704881dcc9ebcd80f18 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index ce20578f5428917dc04e33a6c798f139618f3882..9e247061be182106c94b4cb563878ffe13a09c47 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 4a14bc6015fa55f24991b31cb229096e0d478357..25d252751e94af4d3b511d558b5394f4389c6e80 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 1219ecb0749cdd1f4f47a4c746a759f4b02fbf60..cbc50b8b14fbf6ea3cda9bbdfb521a1d6c18ed89 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index cb944e6299053052b7caee7e3945712fd89aef29..2f9d8ff0dc78855f0a3116e2542cdb51bac129fd 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index a6015dbafe2b2678533d9ff494023a5bc7b58581..61c297130c75f3c79b19a29edc8726377fd321ed 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index c0a714f16689641df4f2dcc103143f74f2de97ea..3a2ee38516c0f2776853ddf0adc67578dc313781 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 2ac2f7caf70b46002550f7862a9c2a988f5446a7..d0b825407b532c7ac73d711138426906a4b672be 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index cfe982e60525c6f73cc4829157734dd2ca1baeee..0e36ce75025eb2fc7499642ca47575518a4cab5d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 7eab92e8e35c6f4e572bd6ceab1339ef69a4476e..3611443d94238830d819632d6e76f69944aee6fb 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 0219a98a7b83ae71bac90be906ac2a74437f723b..78ab399152ad439151c5e0e6dd83d0993ea195ec 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 5e48749d820e4eba309ebc2b14747fe56e81b3d3..5562e064e114c23c6b01cae84cc47b4a069ddbba 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index ac484fcb0f09bb5c84fb0b7eba16f3f8cc14406e..a677da9d1f9d6d89d018a9f7a460ad09335244e2 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 716fc98816201ef79bbfa3a259a14d3f4f170d47..160ef6ec13ecb4e3f1d128fd457d19012ea20652 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 615f4400cb11df1d048935797c81cbaf5af3218a..5ecb02edb85497e3527ad63bb5385b17b3d8b3fd 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 44a17633b443f608e52ec690f4ae3a428598a3e0..567f1fa5e157da9f27e9699fd3b146c108d371e1 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 567c2a68d62df3dac13c99290503f4ad61bacb35..61de1406acc3dceed8b5679d0d0112bb45b811b6 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 3ac7df015cf550355a89936e57bc271cedc66b6c..936e45c399da7e95aca99f2b261408b719accfdf 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index d5cfe4cbef72dce210b91eaa2332c0eb68228539..ea440349caa3bcf22c0056b1d4a9b7397e76ebe8 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index ad1d773189b64a2dc949565185ba1259bf09163e..0cdb820a14da86e4a544d13a265173bf0f21ef50 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 0c0df24e8abeac8cfbc0f19771f1412e7720dfa9..6dda112675b4ee23166e9299d3cf902a309962be 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 757faeb08840af35cb8859e6c6a8bb6c9a466fda..d591ac89aa941e9f9822d244af53de28f3b541a9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 278c2c6731d932b3ccf0c8c46c4c6e61727e5674..3a9f89be2123877cf56fc8481aa833ee1bed459d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 3393be169ffcfcc8c7ae4cbcaa215d9a16265f15..67d1c48e8367c7b8e0c10d045dae8434c2ccacb0 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index baa799d4ca10a4a9484827e2377a19a6c6ef3b93..4241fbd620ce2d113d70ae03baacf1e321b249b4 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 6de9f33974d79e94cf43d773f97bce839b0c2e61..e5648229e02b46b3934ec932055500be49042b93 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index ffcc96a2953ca6b8930088ac202502662dd03528..64128c53020a399fdd42ed98be77059e37c87b5b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index ab00734f0cc76dad2b1b2f70ee130b0e60c43faf..4c6a8fd81b1e202fe14ce30ad3e6207be80d4ffd 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 3b2b7c7e25b2613981ef5113d74bc1eabed04230..816ab8242fbcb53717ace9152c06440789846d00 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index a3c52499e54ce12f4032c80a8e29329d60269861..e89990657f4cf20dc71dda0cc108c5abd84fa955 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 91f634b3d75546bd89be4d5bf9e87ca2c7c63dbc..5a423efca1b0e996b5457395607dbc3f31cc988e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index fbad5ee56b197dbc84a9c01586f33712173daba5..cd0bb352549ce5ef43a7655ede3045b098dc3e58 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index ed4974d5a74fb840862a2049ca13fea98f51b92f..2b2348e813c69707938bc34a9819ef1377856eeb 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 9f1c5db0dde4836ec27e2c4fa83e5e6c22add6a4..47f993b52c3cf7c44bf818a4e7d247bc688f371a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 090b21fbeeb842a0b10d4079ab589a11e74f23ce..41099ce30b12d6fd43534933d34ccd4d7ab367b4 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 60b6cff502415599832b25190da0a6b62a44bb5f..d40f238059bff2658250cabe711382e8ece67603 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 7946615dcee97b68cfaf1d2c79206dddb8b9bbc9..7c1e0e630a3003b85ebb0d2311312f508c45f0b4 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index cefbfebb5b26004b555e804d978b3ab3600c44db..c924f5075696a2fbcfda9aa07492ad3101ce137c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 0244cda1d19c895bde0058cc861bebdc9f166e24..b24bd04b26939d16a580945aa709e58a87f73659 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index cba860520b9a927b4a10899a3dd9fb3d41a89462..2fe34ddd9ead4f8da7eb2542fa2a544c983d4be6 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 5d96df845dbe0f121d378d7896b9ddbd5c283ec9..aa89dd40f72ee8b4e3a635af83e66e9db30ccb01 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 8f28b571d6d8162cdc63ccb849214e39a3de5537..df5645a604466fa7882a343fbd0fea1a6a87c412 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 52c425d026d1a352cba28958920823c5071c90e3..f384d2f9cb708d0595e5f9da7900da4de8e129bf 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index ff4c1d692583a2599e1bd04d24b4b4fdcd9f1491..f1eb203c8474f19f196de9594156af9de383668b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index ffb9c7fedb96a48bc43ba544368079fe20a863fd..d978a71e37bcab8d6f245a0297edb579b1f09766 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 6e945570ba11a5b6d097b3bd48c1ec96341b361f..c7804727f7756a7ef93ca9cfad9d3b67e08e9b9d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index d0c4e033bdd88ba5c53b0b0bf482a99ca5eee3c2..2eb596a59823753f841bc4abd4caf4be37b39a8c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index f48288be90fc495bf27331d9f44da383a6698251..db34b117b52534a55b2b1260644ddaef24ad9a6b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 19b3ea23a160146ed7f069a7db24ed881f49770a..635530d2720238d4bfe333503f47611d73c47da3 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 9847b4eea1b0376ed86ceab587d790109ef0a296..b38a7ffac48aee640298ac506a619ca89b7a979c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 3933231431dcdd5606bd6ca575cd39bb63dee813..c104eb783216608d5fef2a88e40d94167681adc1 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 159c69733947fe824aa2df118eef91ada6fef98c..0d45cbef55ed7718febc6a5573b3f1d069e581ec 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 16397fba4ddb08a5a0b654b6cf7ff3cc78f5b21e..8cc697d1c464331f0c962861e0ff059a03b2d2f2 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 1eb92959d118d86156f04065744f7662a92db958..e912cf06e3ea7f83b0fa20248cbcb81d629132cd 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index f1ac034e7d8788602155ca0128fc5213548c415d..f435d8f20f19dfa2dac2be28ae737404f0b7ed2a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index af40a26215ca07030403c2e781f296bc830777e1..e085dbb20c043bde40c1e2a5366f261679982425 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index a086e0cc6c17f773754e48e4884ddaa6685ca807..4acd65eaa53a39271f334b28101ae6aca8be924b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 7dabbf65e67e42d207678bb56a9ab231f2934dfa..c96073f889f6bf18b6e53f0fb5c645756cb643e1 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 8142f1034526e580b3be46ebc2b37eb805412b7f..993ab050b654ac9a0b66f2fbdf819fb14565e23f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index ee2f296a6eb76352544cba58f104dd6358327e33..f6c6c4eba6a5779a622cf909dbc55d33c5856097 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 85dd2b1bb63c7c84a414d20d3051a3ea5581be1d..417206836759b901a7699e586751565a955dfc83 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 42ab349714c514daddebd0d3f6558ab42426a567..65dce9707058fee20a85969988a01ba7680ce555 100644 (file)
@@ -1,3 +1,18 @@
+/*
+ * Javassist, a Java-bytecode translator toolkit.
+ * Copyright (C) 1999-2007 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.
+ *
+ * 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.bytecode.stackmap;
 
 import javassist.bytecode.*;
index 090d9d90fc6d03536295140a4b5030711ac2ed28..dd73ac69af00a61db77a2bd40a9719d3a610812b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 0712d906443562b9a68aa32f6ddd1da99aeb3651..85b8799c43b6ff9afd9dddb8e74843b0790f81fd 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 2c80fb4a14c82671659da4ee099f703e74cd34a7..2756d1528067edc349f655ec8e7c4234cd04e139 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index b3d275b3f3679094fc95a6392bdb47dba8288b44..9314bbcf63d21b57ec55f15936de39cf743a0b06 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 8facdd2330c4ed4be304b2c92df6f913426a4380..b9574c8349619d3e2e8366e9f4594c2601f92bdf 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 9ac6c337bf3cb9e1270242e363561d64821c79bd..d88909ed65b8fab0629a5e8538576b40210c355e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 500c03c123fa238ea49c3d2cf6f407998f6bdd39..3a22a79fb1f650e8da86eb3653687297459d6c36 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 4cb78c775cb64dbfd6e3b07fb8efd92ebe1f932a..5233a25c639ab1ef9a1c54aac5ba91d7036b194c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 71849957f16dc858b1903e129f14204587763dc6..72848036afaf19532f67aaa5b1451de1f8bf7b3d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 4fcf0a76ec9a5d551a0098767e7cbc08a0980444..d263e1b083f81f5b4002734e57fdd5baf199fce2 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 90915533388f9abbb19701ab5b67d1d8dbd0dfaa..f6e114b9ce37839db07991892fbdf52cba8c4bba 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index eae6d9e1748459461916e40c75bbdd07aad5a154..a885af6e8bbf832a290dd2bdb45d9942d946c68d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index fdeda62cac98e1b117a52699292e2c30b02d2ae4..fd77f0e1aaf26dc6ce99f7c9695747ef64c1ee74 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index d6035a7c7a914044311debb5db7297ec3f1e1b08..8f35f36847e6cd04ecd1e4f5660625c2445cbe14 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 46313de2ff534275fb3fcb0b2f5370a409b6d35e..dcbb93784bc3cb95c3f4027eea059822a9f85b66 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 3368620c0f00674a4dfbb83fa083c0073732ea14..6a94768b4e5af0932c30158547c99d73750cdbc6 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 8bdcc63a71254872b9d4a7143290170b1f0af541..d2cb861c757105d726f376dd5b518943ed71a7e9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 128e672fe768493295737b03de59c266304475e4..b4866688ce221a2eeb9afb955bfca56a50263478 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 4a22b324b2c5f5362b114da39d2b63951fa8486b..a0c4330c4aa1bb3f8ff8dba84cee0b749b5d43d0 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 359cc7669f1ad8c7222caf258c1eacc6d197839e..a9c6c2fb689ea848f3b0c217ed4819c6658712c3 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index b6805fe8941aa8d28bb766498c79271d87ccc863..9e61447a1f6a3ec134a985004d2701c9c0067dd0 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index b2f3ffac5db6d8edca5d19e5485e8e9b401fc8b7..1fb5a6ad40eec6e80f5bde50733e4fe1ec014cf4 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 32ef5dcc2fa58289126e4e302bffbac0999409e5..544ce24c8a182482de1b72afbc82b916f89625d7 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index a87a45d17f2f5308af71d130aa03b3266bb16a14..3fb5640164e15c9677ceec8be0ba8555f3bffc66 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 2cdafba330a9553a5aa132eb5d99e5a3c2795f70..2fb96036aebdf182857d9fd4ff9364083a1f601b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 65c746bf0eb17e4a03d840dfa9527dd788f6362f..d3a43f0001f1c6b4a71af1b0c1c203f626baf48d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index f4fb239508873335a55930b187610791b6f25824..5276c2f1bfb8f4c95d5f67f2a1bcf356a6dc3519 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 665f0af8de2e1af8f0074211a50c33124a5d4f25..ec11200981d56006841ee68251a70feca4a869ae 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 344047011894fd565a61ecb1125fd373ad235cf3..ce32b8717a0ad071fbd25c646680c9715ded0a88 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index d512c28fbc2111c16d4804effe0112995d0c1a1a..9813ce811bfd13a7ea306c22486e3dfe4234b796 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 8e45189ed6f5669e1315807adee2429d81e14d86..703a0bf1808437fc8b046984191aa3a2bd58ad02 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 0932609cc3d422f85442f5fd6f4670e6fbcb8d38..a1a9ebf84ec0f166a73a264e6670aa72299de3b3 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index bc67a24e0b11408609e9c07189ee8f430afd049f..404f2b85b5991b50878848f5299e64a50a0ce335 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 2cbe3f1fa1105e1eb62796c206a3f0bc93cdf56e..8d0661c39ebf02da5a9a5391ef6e85d905fba4f0 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 91a3fe2c150c5b40f7c80de9d12271c9d8ee64a1..db3cb5169ee0a222cb7d5265409318a742c96bad 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 6f1757fc3879b0759413789b16effc2012e6a6dd..1831a35a8626e76b775a81903b2620d7f71a951d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index a130dd2db586adc7a04a77e09200252c33332192..d5c6d62864e709dd4ad6bfdbe689b349eea09d79 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index e841b1eb17156a428dec3479b3593defcb59f6e9..b9e5fe8b848a6faf5a3a9e7e1aac8a564a4024d0 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index f3c5d7170aa8aa8f21631b049dbae9c28b6296dc..0b26e7539bcc7f410357ee217b779ff9f7e3ea1e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 003c2b6a4e529183ecee25d09856568c88c90bdd..353690ecb47cdebb61c0942cbb98d235a03f884f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index ca7c5b0bacf9532878949c2eb2fb57b5f7b69cb8..b4cbf344dbef817c48aeccae18ddde15c9672bed 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index afa944b6d9ea503ed07cdd95639fed65d4967170..d3036056fc5d882a2a48c2f867cdf17d1f2db106 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
@@ -24,7 +24,7 @@ import javassist.bytecode.ConstPool;
 /**
  *  
  * @author <a href="kabir.khan@jboss.com">Kabir Khan</a>
- * @version $Revision: 1.3 $ 
+ * @version $Revision: 1.4 $ 
  */
 public class TransformAccessArrayField extends Transformer {
 // CtClass componentType;
index b96cb8c94e3032bd33288a11b076b3260d73f473..1ab05d0df3f3ceed74bd13dab3518bc12ce6a307 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index dcbff3b7da25f31464bdd80aac776b95e1e243ae..f42c90053f7a712bbfe0332444472545f42ac110 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 858b74303e97960b188db002ed77be740d5807c8..bfa81cb30a7c7e9314b6a526caf147a12456b778 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index b3e9adfd1b0aa5d5a415bef9ede69cc8172584ca..d97c95da881014caeb035a5bddc4f52291515b87 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index a853d2d58e931cecb14af76d8cbdf5fc323b8000..3d744de23086d13de287761df8ce6cbfbdafc276 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index af6a4631e856e02ee0b760a97a5c31cb4619c356..073b80f43ee4b5d8a03eddfb00640d04a0604102 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index d749ad58592625833a101fad198dd040f229405a..e2a284f7ff638409a5e3b9af11d9d4492e9dcaf5 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 82baade62694b19b735e7da10cba587e5fa435fb..d4ea0ecfe87c467d10b7dec5d5b10434cbd4805e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index b7440ba7ac2e5ec23ed75a4e70d4281edaa268ef..bcce724aa015d5931297a6a6c6bfe54a255aa9c0 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 3a23181ed01099e3e07a5113a7271086d8e356d6..3a6a02fee01a29db8afc3412809e233d0c1d707e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index e2d455f271476954f8ca96febe1a6db6e7e80ba4..6d9566f9c2728ee6839768922de7a0e79a4a3f1e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index db9cb437ce39de3e8575947fc64118a233784bfc..80ddd4b45cb72fa4204a57b37b9234903344d5fd 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 5cec0db916cd5671f10c1e03af7870e224eb0a7c..63d2b458ea80ea873e8f67e9eca7e74df981c71e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 78a5688de6f04b0f7160f8938827dece75c63591..fc0fb0adbc5ded0e0dd393d4c4341c01b6bc1374 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 0f8ebdf7dd07b3e04000a3538a7582e742742d81..cdc9ce93388941b02c0301fd7e8a41414d4827dc 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 2c385b1b09a9a9a384c9560837908783571a4ce6..2a9a891abc0d834ec221f65a50e0a9b75bc5cb53 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index c01d0d6d62a928323e4072b2fc923a282c1ff321..44ba80f988d68a0c11a81a2beabe22f356980bb4 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 510f40d07e90d59806a036bd3cb5c9f5a4643dee..c37a021adcbda2d64c3a7218392ba72a2cabc24d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 28bb43542a65742d9c6550086843f67a6fb8ab91..641c63fd4977d5bcbc54f51d923bd82fdbe504a6 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 4a9b4d6228046162623c905d8186e208784a7d6d..8bf1ce989f464e488317e9cc37ac026e03fe5fa3 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 9d861c1b1d699a598a94138aa89ab3eb004905da..29db811e2f0fb4a0e9f1d7f625616c2bfc579222 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 5672c2f52199e3bdc05f851385e50a588e1c74f4..ef96c5086e622580e846b566127876cd3ede551b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 455b673768e874ed2a8b6349da1bbb7e6858f06a..48337735d4a40492f986efddfb24ba50d6a3384d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 2006 JBoss Inc. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
@@ -31,7 +31,7 @@ import javassist.NotFoundException;
  * @author <a href="mailto:bill@jboss.org">Bill Burke</a>
  * @author <a href="adrian@jboss.com">Adrian Brock</a>
  * @author <a href="kabir.khan@jboss.com">Kabir Khan</a>
- * @version $Revision: 1.7 $
+ * @version $Revision: 1.8 $
  */
 public class ScopedClassPool extends ClassPool {
     protected ScopedClassPoolRepository repository;
index a3d5ad5d8ca0b7ab6f8edd1d14f60eed852a02fe..1a998a91a9207124efb30458252f54feb7e4de40 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 2006 JBoss Inc. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
@@ -21,7 +21,7 @@ import javassist.ClassPool;
  * A factory interface.
  *
  * @author <a href="kabir.khan@jboss.com">Kabir Khan</a>
- * @version $Revision: 1.3 $
+ * @version $Revision: 1.4 $
  */
 public interface ScopedClassPoolFactory {
     /**
index b4b21171ad9849ae15f8e7686cf1a8072511242b..b8e66d6e2becb3dc264f2e61d31465e39b8aa8b7 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 2006 JBoss Inc. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
@@ -21,7 +21,7 @@ import javassist.ClassPool;
  * An implementation of factory.
  *
  * @author <a href="kabir.khan@jboss.com">Kabir Khan</a>
- * @version $Revision: 1.4 $
+ * @version $Revision: 1.5 $
  */
 public class ScopedClassPoolFactoryImpl implements ScopedClassPoolFactory {
     /**
index c52a2aea25785057643febe7e8bd982cc8dd510d..7ebf8f8d681e9b9e334f49d4c9ab3015327f3754 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 2006 JBoss Inc. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
@@ -23,7 +23,7 @@ import javassist.ClassPool;
  * An interface to <code>ScopedClassPoolRepositoryImpl</code>.
  *
  * @author <a href="kabir.khan@jboss.com">Kabir Khan</a>
- * @version $Revision: 1.3 $
+ * @version $Revision: 1.4 $
  */
 public interface ScopedClassPoolRepository {
     /**
index 602eb56eb3042020fff71a0b8b1872a4ed265d80..2245c7d5957698b691832b2e8bb3ea61c56b9c4e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 2006 JBoss Inc. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
@@ -29,7 +29,7 @@ import javassist.LoaderClassPath;
  * It is an singleton.
  *
  * @author <a href="kabir.khan@jboss.com">Kabir Khan</a>
- * @version $Revision: 1.3 $
+ * @version $Revision: 1.4 $
  */
 public class ScopedClassPoolRepositoryImpl implements ScopedClassPoolRepository {
     /** The instance */
index a98fb90813644c1e2f6bf7390df757ff5ee0b03a..6a73d9e262049e2205af9a7f8481d686ace29a90 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 2006 JBoss Inc. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
@@ -26,7 +26,7 @@ import java.util.Set;
  * This Map will remove entries when the value in the map has been cleaned from
  * garbage collection
  * 
- * @version <tt>$Revision: 1.3 $</tt>
+ * @version <tt>$Revision: 1.4 $</tt>
  * @author <a href="mailto:bill@jboss.org">Bill Burke</a>
  */
 public class SoftValueHashMap extends AbstractMap implements Map {
index a581249f7e3a2333c0e2809785d839238f7e3496..149cc902b390bdc913c5de2753a8eb0c67b2769f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index efc21d6f024789c6a9203f584cbff0d75429bd41..75ffe0c27b012de2b357b263a24f31c2d50cec19 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 070594a025462c4fa44b8f28a6909972bd43872d..8c063d7dd6be6c5b6923080192b57f320134dcba 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 1e64085823fd2175457fce4860045e0c9f3c228a..0af28923a7adb18fb599c074010bf240605634ed 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index d99bc8aaa139fe6917636fa28e644cae8b322fa1..04dfe27b5f03ee9f24126708d597c34198691b8b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index a32c0a8bb71365738846cae451f485895c68b293..53755845163628d7a6aaee09db171e35445c07e7 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index ba50f112bbba59e3f8dc7f44b151ef0addeca03d..a9aef4b262363dad2381f251d0bd2b4ffbd67c96 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index afae616e20eeea88036a3ef93bc01f230dae6924..4361facefc7207f7d066094eb93a1197c678ac1a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 801fff861c048abe1ecacb808183f3541a13b105..cd3a5f5973971d98f8ab1e1a7275dd5c69a4093a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index d5f008bc68b19991caa82ba91452f325f0b16320..cb9309677b231db4d9c4cc67c28d31c21bb6053d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 9d5b13cbbd1cbc1b5875c67d5d8b55cd2419c40b..d76df198890fed4e59a8ed14e456352cb263269f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index c0558026808bc9cecef539a70cd665789116e6fa..b2678f308d0e310fc20dc92dac81c4e50f40b509 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 49160fd10ae911f916461af71d19bba807ec445a..e6692ef702157b3b6c449e37b31ee5a5c4d202b4 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 5176661e89efdaf22bba397e92eec6ea60800a3b..8ec3a469e9a6f8230d8bc51397a893677f88b8db 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 70ff83a6102cef2e250c011bfd75003af875dae8..5ea8a705a2cee4a6fadbdf13a9aff2dad4f31630 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 0013bac46555f0387376eb93060b176cd8aa117e..19a107f40f5a117c3af6b57e69ae230af4169d3c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 51a271ccaf789c184603febde374fd302f7ad27c..fb1c2e15e5bed53d28b9739eace9245db227aa18 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 0bf71a627b791e9ab9b92eef2d1f3abdd9ecd953..12c799bcb8d70028b92a47fb85aff8e9cf8bf80e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 0b6b4dbe721af18b9de97a4e83cf0ca16d099549..8b6604ac8b3b660659defb443e79e387744e5dcf 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 52ff76ec97b7b7aa355e39a43788962d56b0b54d..0010203da2166790576c14acbd0afeb8d2e62f2d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 063bb96fdca197ca758fb4e3bd2877da07103e57..de7afae5c12c0edb2f531237ef36cda5f0c64601 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 79861d08626a28fd5f101212574eaded4f3073be..952d56d606208a19fc812e945c0533e67c31f4db 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index ef25891261b51afee209deb1e87244ff6da34e91..ac1dd78a9da3aec00417f0ca6412af6de5a2d9d5 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index aea9d88f18c9293e269f82049507e9ee5c434ae2..d844639f112d9e5c7d5cc72a3675359c75e654af 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 5b9ce16739fc2097eb7e2b5e2319dbcef388a24c..76084ff139411a1fcefe41844b495fc2cfce6502 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 220e6f04ac904abee2c83cb0cd5ca7d8ed679a3d..2bb32cc8a5e5de0d67a0779a15a6d60713b2d499 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index be9eb25d57df8c742d832588f2fa3a9fc61fa125..e6279e307c4b431b4290a8d8444bd8912f439eae 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index 9af00f83e1debb41cf28afbbb6e7138604b8831a..94c0fc9cacf0ef392e5bff13a04fc5032781f205 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index df931d5ffb69ac8bab040055cbdb139d6826115a..b2dc2246ee3593c34439a412dca5058bb126a8e3 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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
index b3fcc85ba168546cbf7d2a126e9967a65174f014..d4306220ab3918e4d932f14ff5b39dd4abd7108b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2007 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