]> source.dussan.org Git - javassist.git/commitdiff
updated the copyright notices.
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Thu, 8 Jan 2004 17:22:29 +0000 (17:22 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Thu, 8 Jan 2004 17:22:29 +0000 (17:22 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@67 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

136 files changed:
License.html
Readme.html
build.xml
src/main/javassist/ByteArrayClassPath.java
src/main/javassist/CannotCompileException.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/CtNewWrappedConstructor.java
src/main/javassist/CtNewWrappedMethod.java
src/main/javassist/CtPrimitiveType.java
src/main/javassist/Dump.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/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/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/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/SourceFileAttribute.java
src/main/javassist/bytecode/SyntheticAttribute.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/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/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/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/NewExpr.java
src/main/javassist/preproc/Assistant.java
src/main/javassist/preproc/Compiler.java
src/main/javassist/reflect/CannotCreateException.java
src/main/javassist/reflect/CannotInvokeException.java
src/main/javassist/reflect/ClassMetaobject.java
src/main/javassist/reflect/Compiler.java
src/main/javassist/reflect/Loader.java
src/main/javassist/reflect/Metalevel.java
src/main/javassist/reflect/Metaobject.java
src/main/javassist/reflect/Reflection.java
src/main/javassist/reflect/Sample.java
src/main/javassist/rmi/AppletServer.java
src/main/javassist/rmi/ObjectImporter.java
src/main/javassist/rmi/ObjectNotFoundException.java
src/main/javassist/rmi/Proxy.java
src/main/javassist/rmi/RemoteException.java
src/main/javassist/rmi/RemoteRef.java
src/main/javassist/rmi/Sample.java
src/main/javassist/rmi/StubGenerator.java
src/main/javassist/runtime/Cflow.java
src/main/javassist/runtime/Desc.java
src/main/javassist/web/BadHttpRequest.java
src/main/javassist/web/Viewer.java
src/main/javassist/web/Webserver.java

index 1b53d8c5da784cb4415a1c400a4d6e39d333ea33..f8d626da0fd736ca1ad9d8293fe4e629d29f9080 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-2003 Shigeru Chiba. All Rights Reserved. 
+  Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved. 
   <P>Contributor(s): ______________________________________. 
 
   <P>Alternatively, the contents of this file may be used under the terms of
index 5e0d527a02a5e703fbde989063ae473f0a4c7559..7fad57881640e523d921b3a046e555d11348a83f 100644 (file)
@@ -7,8 +7,7 @@
 
 <h1>Javassist version 2</h1>
 
-<h3>in October, 2003.
-<br>Copyright (C) 2000-2003 by Shigeru Chiba, All rights reserved.</h3>
+<h3>Copyright (C) 2000-2004 by Shigeru Chiba, All rights reserved.</h3>
 
 <p><br></p>
 
@@ -480,7 +479,7 @@ and <a href="http://www.jboss.org/index.html?module=html&op=userdisplay&id=devel
 <h2>Copyright notices</h2>
 
 <p>Javassist, a Java-bytecode translator toolkit.
-<br>Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+<br>Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
 
 <p>The contents of this software, Javassist, are subject to
 the Mozilla Public License Version 1.1 (the "License");<br>
@@ -497,7 +496,7 @@ See the License for the specific language governing rights and
 
 <p>The Initial Developer of the Original Code is Shigeru Chiba. 
 Portions created by the Initial Developer are<br>&nbsp;
-Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved. 
+Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved. 
 <p>Contributor(s): ______________________________________. 
 
 <p>Alternatively, the contents of this software may be used under the
index fda88d53e421551cb3009cda4320d6c4a815533f..f5c07ff9b21b22f353428781a1605299c810168f 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -84,7 +84,7 @@ to ${build.classes.dir}.</echo>
            windowtitle="Javassist API">\r
       <doctitle><![CDATA[<h1>Javassist</h1>]]></doctitle>\r
       <bottom><![CDATA[<i>Javassist, a Java-bytecode translator toolkit. \r
-Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.</i>]]></bottom>\r
+Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.</i>]]></bottom>\r
     </javadoc>\r
   </target>\r
 \r
index 9125646a29dcf547f0d6842fd7afe0bb21f72591..d001ce87dfc2696ecfb1f1b42ea6da19d23c633f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 20f9e515a81e8b5c8e541e6fef9f35cb70fbb4b4..dfc5f79f08bc3dfcedecb0f779a41c5c0886dd07 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 5785002a349b4ff275a8db2cf412fe82bb7b348e..3d1fcd0d936bcd24218f82f92950c3d5faaaa55e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 f05713a83428a7af94f8b1473a963417a99c11a0..948b53b554ca3c2921692fce8db04a2d5f0df5c8 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 ac4b5a084d8c7d155205e74a59cd401be6300525..68796a4029db87e0eaf2d237fd135f9e8a6ccf43 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 5e6898e8a3fe3646c641001958d8f844567bcd44..2731ba3d2f50edaddbddbfc770e7e94767a138b9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 24d04848d6ff6a9f99e88ae568d1bf45f003ca2c..7c06f6bf778a890c0a6203bfd109f52494cba4ee 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 8d600e6c949b903fd927e81739ca70353a6178d5..baf010a2814826d3d40131d27c88f0818d32ce0a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 018b0c521619ae1529d848b292641c15c0e05c98..52a13095deabaeacf6739a2e41af7ab042ab647f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 5d4c82803871134f31f27478803b24370773cd0a..bded5c90e1d9b5c1d1da51bbd84f0a8f2357f37a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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
@@ -36,14 +36,14 @@ public abstract class CtClass {
     /**
      * The version number of this release.
      */
-    public static final String version = "2.7 beta 2";
+    public static final String version = "2.7 alpha 7";
 
     /**
      * Prints the version number and the copyright notice.
      */
     public static void main(String[] args) {
         System.out.println("Javassist version " + CtClass.version);
-        System.out.println("Copyright (C) 1999-2003 Shigeru Chiba."
+        System.out.println("Copyright (C) 1999-2004 Shigeru Chiba."
                            + " All Rights Reserved.");
     }
 
index c2c4cf20f69bea17e8f12b914a8afd775182d14a..596ab0b3136b44d05508eb594f40f28b4fc5031b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 849f855340e2f968d487c4fc8c2bd99654367b27..e294ca515b2f60367d0233cb435838c7c0f48fc5 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 5adc76c7c08ab4c67889e2d2c72e6e84c3c215bc..baf018126b09520f242306ff5b97f31a7777ca5d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 9610a02e18ae867d132bd787927ed8b133d31980..05d02bf8033d942faa282c06d8a2115855521a95 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 64634c39b3943a8da34f600b8ead75c4d77ed330..f0547150d09c4c8db19f90bc31ce6412c8386a37 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 30cacf0d428f9ddc7452f56295efcb109224352c..a25540e9c5db09619b2d53abce8242888e597888 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 306a459e8761f715bf4e1715dbd0c9cd9ac8ed7b..7bd47e9b1423e275b569fbae1825732d0a1907e9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 8bb0d1f9ca2b3af2fcc1b283d041969796cc945b..2f8624d40fbc391e9428cee0f07bc11cd4d28dd9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 0dea94dcbb9cc9d32be187e4dd14cbef05d76092..94d13b9acd05600c41684a17d6d1fe275d1d11f7 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 2a7272b2daa3904b6a3aeddb7021928db1f5e6bb..71f6287fcc72022923ad6a67915b1686f50f3774 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 62ed5e13569ffa6077c7826b3f149eb64050edfb..ee2ee56c1152dd1b7069258d7281cad3a9ad1410 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 aeb6e45b62b11788ecc17465aff93d367637c12a..2511f88cfeb429be5b0214fe445847a28a9f3ecf 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 f84f7f1cb60c7dec57848a40b02690293e9532f3..ad3033aac3cdea7b47125ec386354bbad8e6b180 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 071b2fc9baa600b5323434d2a358a281b4b31ea8..2ef107c3516c624f98e2bf15e80567df26349b87 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 8dffa1c84e8093d9d05ff9f8fd006f9fe3e04b9f..c70d7086d3d40520662c05deb9d6627283a15340 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 0ce17ef86eeaebc5f5771ce1bdbeb97086e270b8..98b1b801d9146f10efbfd2367240c3c6cc015cfd 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 629a31d1e280452f89fb0854f6de13555fc1bfd1..61b9b8979792335b856e085d900c8ab84023b5a9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 74e6799a8bef3b3d2131d83eb52b85f8179e90b2..f48e862072bf60502e31f53187dc874746a1c851 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 745f3208c9f173097a4ebe99683550c7c984abac..e5617680cdcd504db8ab1cd838e46400b3724fbc 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 033df21f1423408fe6dbef649fc786c4cff93085..7ee1125b97213515e24441724e3ab3399fea9323 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 bd8f29defdfa79ba5ec7f82ef961707308d19636..82fa7087b818c1c7e0fb618e85b523bd69ff9b4a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 125496b0d5088fffbc3e108124789f87160c05c5..812f0d6532245a348b939dd92d08f61b5208183d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 3f70c7d8f2f79d47bc1ab63cb1d6173d27aa72eb..0a9d16387bd7428eac61e74b6234d43fefabb06e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 087c939312827dbd996656dd194574874570ef94..0aa966492aec163a1550387c577ffa75077f7ff2 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 c1b99257359de61392005cbb113a03258918d99e..85df2243e42b74b0bc9e4d177792ffdaaa8886cd 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 83ced02a982a65b82346e3a843365bece7921bd0..95b70f067291447028593922b86bae7dd5c01e9d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 938d41e52c1b1b06833720478f1ab76be4e3aa35..4e170d60f58fc7a587f92e317238f952a90582df 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 7682dc06b872cac50ebcebca01407869b1154a10..90c2308be78052a4fe037ef70f7d07e6fb3e3bb8 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 79626cfd43ebfc947338b61f697f8b5b8a409dfa..8d850cac66cb343cf6d7fe8696e8ea55837a1403 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 81aaf6c59697196c716b84a2c17f8718c968e5af..602b14a8130b6adc03690800f5743a00528b4844 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 42a67bd3c8088d8a6a0a8a4091851839f89c673a..c7f697b2d0934d9d32aa2c274ca7420ce56fdedc 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 0b238d91dea3271e94a96efb98fdc91837af23f1..0b9635ff0a28d16d3dbb820680b3b5e3b89f0b1b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 961691b8fb977f2a5dcf6f717c004f8addb12c80..246b4231391ad8d896d9e0c957adef2334e0469f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 614a068208f9c0ecf23402fb3e2bc5833b7de34c..3f06376b32e6588bb873f05e89b734ddc4973030 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 bc1e456b727fc83eac45c222ab6761139b81371b..b5c399876c2320555ddabc61787c79aa3f8e7327 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 98edcb8ad505f242d7017c76742740cfa76c0c39..3f3de406d66f239ed073420caa47a1784af3fdee 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 6d892aab33966b5bac8f5de9362ee3fab574c9a2..b6caceb72c21fc84478952d4eee8f7ecc853a31d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 0bc273d5349a8997c0f28a5db6e07ca55dc39d7f..735d609f2472015197df82aa3eb559c5da5cf94f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 164688fd82bc70e00aa56945e0217e496f3e494e..c4be753e9a6a32f6fd9f53cc6788635593edba80 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 1dbbd864c2e26b38772af8ce48d0c3d2d82d369a..5e8113fad3f965e39b7308334246e8ad40d25a4a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 88b51609e6125366d9783cfea3eba5bf450a6940..20ca8e7feb1028dd32397f5e1bf19ff0772dd6f8 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 8c0d78dc4ab634b43e6bbf6ecf371600cd7e121a..c0efbff1655e3c4063566833c0a4c04df15990e3 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 200e2d1819f15931a76f339ff0116e5243f1deed..8a7ea5b3dafcc2d7a8420f53d258d3d6fa0018e0 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 45b3b3e82d0a041745bf0b39e52d632ba8a40263..198499a7c20fcb7586aac23159c53274a431796b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 194c3fdb5e2d44fc1e2807733f80f1a77808f93f..5b28c7d87cc871d455ce8366d04a699669e0f93b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 88b10f0b2d41cdd412c0d3d4fd8a975e8a2e875c..01c51a4331e7b5819650bb5df87d39693f38176b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 2436b4bf1ebcde018d3d95a5d920368d030cba54..4f83bda87040b1fd1a2b88d2c006cbc2d4215167 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 54e95a0a22f0de9ff6a2fb9c6c8afce4dd0a838f..07e7521b10bfaebccb1a33dba0360bfd2869dc43 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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
@@ -187,8 +187,7 @@ public class JvstCodeGen extends MemberCodeGen {
             compileUnwrapValue(returnType, bytecode);
         else if (returnType instanceof CtPrimitiveType) {
             CtPrimitiveType pt = (CtPrimitiveType)returnType;
-            int destType = MemberResolver.jvmTypeNameToExprType(
-                                                    pt.getDescriptor());
+            int destType = MemberResolver.descToType(pt.getDescriptor());
             atNumCastExpr(exprType, destType);
             exprType = destType;
             arrayDim = 0;
@@ -556,6 +555,35 @@ public class JvstCodeGen extends MemberCodeGen {
         return is2word(exprType, arrayDim) ? 2 : 1;
     }
 
+    /**
+     * Makes the given variable name available.
+     *
+     * @param typeDesc  the type descriptor of the variable
+     * @param varName   variable name
+     * @param varNo     an index into the local variable array
+     */
+    public void recordVariable(String typeDesc, String varName, int varNo,
+                               SymbolTable tbl) throws CompileError
+    {
+        char c;
+        int dim = 0;
+        while ((c = typeDesc.charAt(dim)) == '[')
+            ++dim;
+
+        int type = MemberResolver.descToType(c);
+        String cname = null;
+        if (type == CLASS) {
+            if (dim == 0)
+                cname = typeDesc;
+            else
+                cname = typeDesc.substring(dim);
+        }
+
+        Declarator decl
+            = new Declarator(type, cname, dim, varNo, new Symbol(varName));
+        tbl.append(varName, decl);
+    }
+
     /* compileParameterList() returns the stack size used
      * by the produced code.
      *
index 3b63180ee60d2d92104d47a3d569c21f25792856..a32d6f0be4ae399cbd84c31fbc9bd636b2dddc7d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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
@@ -114,8 +114,7 @@ public class JvstTypeChecker extends TypeChecker {
             compileUnwrapValue(returnType);
         else if (returnType instanceof CtPrimitiveType) {
             CtPrimitiveType pt = (CtPrimitiveType)returnType;
-            int destType = MemberResolver.jvmTypeNameToExprType(
-                                                        pt.getDescriptor());
+            int destType = MemberResolver.descToType(pt.getDescriptor());
             exprType = destType;
             arrayDim = 0;
             className = null;
index ee75812db4eebc1571121ee5ce8b0e3073082244..e593769d21690bd76633eb642fd9107ffbb7c52d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 76a22fdf330225a7987308c7b03f09a6c84768e7..e3f9d13d26055a4c297ec057ada4cf7cfee1c35a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 2d1a747a03e2eeaa8bf51fc62248a184db7a9b86..c35765ef8983e598ecbc47787d0dbc95e28704fa 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 f266ddf8260f082ee719a22b0b3a08c776f03f9d..051e080577c21d8f1e80aa7050f0d7366758b892 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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
@@ -430,31 +430,6 @@ public class MemberResolver implements TokenId {
         return classname.replace('/', '.');
     }
 
-    public static int jvmTypeNameToExprType(char type) {
-        switch(type) {
-        case 'Z' :
-            return BOOLEAN;
-        case 'B' :
-            return BYTE;
-        case 'C' :
-            return CHAR;
-        case 'S' :
-            return SHORT;
-        case 'I' :
-            return INT;
-        case 'J' :
-            return LONG;
-        case 'F' :
-            return FLOAT;
-        case 'D' :
-            return DOUBLE;
-        case 'V' :
-            return VOID;
-        default :
-            return CLASS;
-        }
-    }
-
     public static int descToType(char c) throws CompileError {
         switch (c) {
         case 'Z' :
@@ -480,7 +455,7 @@ public class MemberResolver implements TokenId {
             return CLASS;
         default :
             fatal();
-            return VOID;
+            return VOID;    // never reach here
         }
     }
 
index aa151aa2035b6757bc6d8242a3ff489f02f34466..b2e09e6f96d14a013ba47d03f10ae4a9cc93b11e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 46d1715150335f0d2551e2de575177ab142e50ca..fedf7bec812447dd253df9d1e416d551c9289e96 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 765109a171aeeb5762f57a535f2c8acec69c9614..f90188c9bf431e43e5154c0f01f25fd947ae4722 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 bc232a01a9c1f85972705493a3b6e092421edec4..0107b373304a2d2a1c9d9037cce5b14ac33c548c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 7d31291d8153090196ae2fe4f5569c0e314ddb91..3f3503b4768b5e4e33aa91ce3783a23fde7a0ce6 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 4c7bfe78905c498d945046e388625ecb2f36e32f..454cd9e44e5f234a8d83c7a8367b7d4a42c14fe7 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 5ddf4f769dcb62332d50c18c41683f13108aa0c9..df60efc4956fb5a5c35dfef8413fcd3a0a27fb44 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 ffbe0a625b58fb86fd04c86a87e406010b2ac06b..47cfd29fb261e6a40d2608422a9c16c7aad1411a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 e7d49e4aef71ba311a7b7705cd03e741a8be6c80..1aabf1d41dcd8c82ae6364e2ac6d2ba3bed22696 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 77a109db40813c3178c50487bc55661170b537a8..15e7b3c93878d8679b5abe8d72c87488005c2bda 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 0078d5c4408a5db509010593e2d52f7247233b02..d7d7ec2b89f861b37dba4a74ee04acae22645663 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 7c8a63e6fedd7f1b88ac615dafa4f6dc2c004d8b..0c90bf11c8093e1afcb59c2635a648871f52535d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 7be994be5e433bc04dc8b1c5c9a3bea5028b3fc7..f390d943e92ecf2ddf3c547284c8ac750c05cfe3 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 9cfde8ad551ff048426d16d6613fd2647ea7d410..5eb786f3f48cd6e01cfbc175121a8eab1a61cfa9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 a23705e70324b9e598b85d11b732292ac0ca1b55..9d6bd39b6657bf9ab48501c2e13f17c1de9e8eb4 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 87b29dc762784094d3113b19b0bc4d90d4e71e7a..b706371482f6002753e50327e00c036b3a0bf47c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 fb443448b012dc2dd8b0d48bb0be5dd2d5cc1282..88fc09e63c3c9c3fbefdfa0bfd507f15b6d8408b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 1f3a9e22de9f5c517e85921c31812ace98dfd3c2..840cfa5a4b68c3071504bd5533c66fec9770fef9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 ec6c9731851572ea3cce7c56f63cd147d121cd38..fcac663b5975ef7408a760282996be18e4efe8c4 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 c31e019da4553b125f755c368f1894da8c201118..d90f1438232a1ad00e30a2e8438598545ca45ae8 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 8001344c64970d61f6bc5ec39135279d96c1ee0d..26eb8cf82d7bc3466923b46fbe1e822b9126bd55 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 2d5edd5472412157ccb4841e5e7ca35d2d5c4004..ee54ecc406577328cb7931f79c263699544f0cba 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 d504dd8a2f0da8a589e4889f42c76f5bc4336e94..c9eebde9cac44e04aac706513446d40f09225f05 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 5220f79bdc6381cf47d35cbedc80ca5f63329774..4e12b3263313c0376b1cbbeeff4e7126233ab4c9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 68ca876655d258ec4586df312d600f001b40d9cb..6797551008ad8a66334ce9bd3230f5ffa4c3ec83 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 821fab85967495c76900ef77a4448401811671c2..07834d36349d9068d3a61ce078a1fa9c1e131266 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 71fd007c32d0f598c668e717d9a5d0d9954a3544..c0e88153b785018993589d4b7d2e2ad5d4dcdf56 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 8e86a6a0834d4249fd1466db5c2b4fb0cb017f85..406beb290f45a0f00646cb5f7e81f88aff2833b2 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 7febb1b7d9082f193bb46dc5c8a77bfd79b8655e..2020dd1116d56d202fbfc56038ff033f4314b8c3 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 389cc688b20d1bb01f04749a49a23c900592e94c..3738b5939adaf4ca30f8356148ad85a53c7228c2 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 6430fe6be0abb95d117cb8f4af30a246b237f7b7..41c99e7f872ff21aebf73e6b335745639341024d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 b1d40afcfe3a97dc4c0bbc53af184aed42d62641..e1efa53fa82d0def24e5ce88c6a986f3428dcba5 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 d76e483d924281071d66f12fd811923ae42ae19d..400a49b56a896d2bee11d51b7ccaeafba6e8a018 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 684fafe3025e855b3c4238e6109fc530c42167c8..45738326f7b1a55bc001508b2ac321aba245e987 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 fae2ff8a71885e62cc056cb2366c4ca063b5f285..2abe90c1ec3ca91eec82bc2c8dc1e373b99ebded 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 9771e28dfb925ec20372a83c59f99f7d2bf369ce..7d06376c3047641e37f76c7e4ed2b5213cb96417 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 5185966160d464d732eee4f9e2fcc214bf1ea278..31d4e233cb474a71c1a4ddcba32ddd19b4f5bf86 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 49e41f5862f39649ab8deba7e7af9773c5f26edb..e2fa87633ba2ff9b0a2c3cbc2090d3819a631e18 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 6d65af52190f8e014d8351f868ef035a2cd79be7..33324ce4c54d176c99da292b148ed438924c4d45 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 8b4e91702de17b3299cbf5ec9db4e2393d47d379..882f8cb437997dc9a0a8ba293c36d6c76496dd84 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 2e93c4841a29ea2ee25f2cc1763babae35a7cbde..f4ef04eb2338206273a8411bdcd68f3ebe8f806a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 c10246c86baa327844cdd7a4bee37b7a3172da4f..cc1f06f5b697c87b0907ae5a46bad465caf61191 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 205322faec923421bdd5db545d511ea241a8f58c..fddf95e4b7fc3af94ee6e525fb84816ca11947cb 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 4053702ecc2b73cefc60c75717616fffa6e751b2..1421faeee5250dd3ffc02d1ea47cc0feb8c5fca6 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 80b35f155f5cd326e763f9291055c0d330e9d0a9..60ec45da8155449fa0f0a2881efdf5ca3313adc0 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 62f25ad6df84959a5f33bf2da76bddf30cf3314e..9d4f20e182be872d9d739e3aef19a6250f659722 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 c9277613ada77e3a4852b7dde98636cc2264f718..234ba22cc673cafb6b22ca916e3824adc8ac9e0a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 b014c9d44e427a0197b6937ec0b7677072e51edd..4f6f16060319514b11adecd540fd185403f28147 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 c9f9609f492f63909bd48b39b38ca4f34445363e..ccaabfa4838112379e9193689c34da0f9c2e9d4e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 cc1aee6933ec9a19a36cce9c46e8ad64c72cf341..6f0ae1c4fd596bfb98cd38efdc0f2821773478d1 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 dfcc2480ee99b3fd275d870533dd30fe81915fb3..ef21bafc90411e3cc854c60ab4b5a57ceefe44b9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 db409c1d8ae9321913437150977007ff757b90d7..661908ae529c8a60277bb31943029f5a72114787 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 620bc346ce8611518c323fa92793fd0a27f13852..62b52932371397d01059f0384fc33721510bf98b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 c2885cb42503feb77dda153cb623b0bdede59f40..1ca4f2dc67b10b79b362fec656e17a4c5a828105 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 09ee509a668522c67860915f4e1bd203655168d5..250293daf72a5e564660a2e01eef83a6251eea93 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 30fea8473305bac1f54886668465ad355ad3b90d..b199a7ecf8d14654550c82c32cc5deeea9240050 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 a9dbd99e800fcfcc3cf2e06d1f3ec30e58dd1f5a..90e78d735934a752b7785da6ab9b4794a821eccb 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 4ac9887ddbd2cf5006f3e10198bd8c480848b752..aab9dbcca852956180cda9b07bc058b89a0ff801 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 c89b6eeb5b58b68689881e354acc77461b442592..61ecb170c2151265ddd54d97e0c6803f7bb2f7fc 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 b95ef5f668818cdff128eff6004c37fcd43b9fda..80f6c3bf594db2a54f2c7b9b8c82c44b9e758584 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 988cf3015e28be0f3b41e42d001f236df3229309..a8e4be73d058053f8cf527abadb84202a618938b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 5d68e3c96d1c65ede2936d5b4bb5acac5186f837..cbf86361ae5a92044b0b00dac78ee34d75cfe817 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 29c5a41586a39be5b2983c86313cf6526e1ab5a6..1e90023d4de2974f1d964007457fa1d39c5b685a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 f05d52b1853b4a9c6a6ff585d6d36bfbff0ecb86..020d570b337bd81c52e9081dbeac4216b99ff53a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 308c36e9d9c9b44b295313460538562e59e0a641..3a030a235fd0adda920884bbe1398c92c827128d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 c1cad5e1804f5cfc3fa2244611b8ca72e201c227..dbb3535dfca83d857f57f5a7e688cada266f2e01 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 25f8c55175bd2045d6d3c1ab65ce5bf8f93a95e3..15dcb5de238f1dae6961160816004f8219eea37b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 662a7264553cf96adf95b3408cd9a1465dc1eaf6..81c73629ee967371725ff662afe5c404e97f0f8a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 bb3632e38be03f19f8c3fae4d820ea8f9556a6c8..e44f54b9ee44429ab481861b50e07d447d710c22 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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 f1d362f5fb93414f3247678187cee7db2117a2c2..a6ef277ce78c38de319d0dc13fd0528bb1e8fba8 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2004 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