You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bcel-dev@jakarta.apache.org by tc...@apache.org on 2006/05/29 14:13:23 UTC

svn commit: r410088 - in /jakarta/bcel/trunk: examples/ examples/Mini/ src/java/org/apache/bcel/ src/java/org/apache/bcel/classfile/ src/java/org/apache/bcel/generic/ src/java/org/apache/bcel/util/

Author: tcurdt
Date: Mon May 29 05:13:21 2006
New Revision: 410088

URL: http://svn.apache.org/viewvc?rev=410088&view=rev
Log:
fixed license headers

Modified:
    jakarta/bcel/trunk/examples/HelloWorldBuilder.java
    jakarta/bcel/trunk/examples/JasminVisitor.java
    jakarta/bcel/trunk/examples/Mini/ASCII_CharStream.java
    jakarta/bcel/trunk/examples/Mini/ASTExpr.java
    jakarta/bcel/trunk/examples/Mini/ASTFactor.java
    jakarta/bcel/trunk/examples/Mini/ASTFunAppl.java
    jakarta/bcel/trunk/examples/Mini/ASTFunDecl.java
    jakarta/bcel/trunk/examples/Mini/ASTIdent.java
    jakarta/bcel/trunk/examples/Mini/ASTIfExpr.java
    jakarta/bcel/trunk/examples/Mini/ASTInteger.java
    jakarta/bcel/trunk/examples/Mini/ASTLetExpr.java
    jakarta/bcel/trunk/examples/Mini/ASTProgram.java
    jakarta/bcel/trunk/examples/Mini/ASTTerm.java
    jakarta/bcel/trunk/examples/Mini/EnvEntry.java
    jakarta/bcel/trunk/examples/Mini/Environment.java
    jakarta/bcel/trunk/examples/Mini/Function.java
    jakarta/bcel/trunk/examples/Mini/JJTMiniParserState.java
    jakarta/bcel/trunk/examples/Mini/MiniC.java
    jakarta/bcel/trunk/examples/Mini/MiniParser.java
    jakarta/bcel/trunk/examples/Mini/MiniParserConstants.java
    jakarta/bcel/trunk/examples/Mini/MiniParserTokenManager.java
    jakarta/bcel/trunk/examples/Mini/MiniParserTreeConstants.java
    jakarta/bcel/trunk/examples/Mini/Node.java
    jakarta/bcel/trunk/examples/Mini/ParseException.java
    jakarta/bcel/trunk/examples/Mini/SimpleNode.java
    jakarta/bcel/trunk/examples/Mini/Token.java
    jakarta/bcel/trunk/examples/Mini/TokenMgrError.java
    jakarta/bcel/trunk/examples/Mini/Variable.java
    jakarta/bcel/trunk/examples/Package.java
    jakarta/bcel/trunk/examples/Peephole.java
    jakarta/bcel/trunk/examples/ProxyCreator.java
    jakarta/bcel/trunk/examples/TransitiveHull.java
    jakarta/bcel/trunk/examples/helloify.java
    jakarta/bcel/trunk/examples/id.java
    jakarta/bcel/trunk/examples/listclass.java
    jakarta/bcel/trunk/examples/maxstack.java
    jakarta/bcel/trunk/examples/patchclass.java
    jakarta/bcel/trunk/src/java/org/apache/bcel/Constants.java
    jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeInvisibleAnnotations.java
    jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeInvisibleParameterAnnotations.java
    jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeVisibleAnnotations.java
    jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeVisibleParameterAnnotations.java
    jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FieldGenOrMethodGen.java
    jakarta/bcel/trunk/src/java/org/apache/bcel/util/BCELComparator.java
    jakarta/bcel/trunk/src/java/org/apache/bcel/util/BCELFactory.java

Modified: jakarta/bcel/trunk/examples/HelloWorldBuilder.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/HelloWorldBuilder.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/HelloWorldBuilder.java (original)
+++ jakarta/bcel/trunk/examples/HelloWorldBuilder.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 import org.apache.bcel.Constants;
 import org.apache.bcel.generic.ALOAD;
 import org.apache.bcel.generic.ASTORE;

Modified: jakarta/bcel/trunk/examples/JasminVisitor.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/JasminVisitor.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/JasminVisitor.java (original)
+++ jakarta/bcel/trunk/examples/JasminVisitor.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 import java.io.File;
 import java.io.FileOutputStream;
 import java.io.OutputStream;

Modified: jakarta/bcel/trunk/examples/Mini/ASCII_CharStream.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/ASCII_CharStream.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/ASCII_CharStream.java (original)
+++ jakarta/bcel/trunk/examples/Mini/ASCII_CharStream.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JavaCC: Do not edit this line. ASCII_CharStream.java Version 0.7pre6 */
 package Mini;
 

Modified: jakarta/bcel/trunk/examples/Mini/ASTExpr.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/ASTExpr.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/ASTExpr.java (original)
+++ jakarta/bcel/trunk/examples/Mini/ASTExpr.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree: Do not edit this line. ASTExpr.java */
 /* JJT: 0.3pre1 */
 

Modified: jakarta/bcel/trunk/examples/Mini/ASTFactor.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/ASTFactor.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/ASTFactor.java (original)
+++ jakarta/bcel/trunk/examples/Mini/ASTFactor.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree: Do not edit this line. ASTFactor.java */
 /* JJT: 0.3pre1 */
 

Modified: jakarta/bcel/trunk/examples/Mini/ASTFunAppl.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/ASTFunAppl.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/ASTFunAppl.java (original)
+++ jakarta/bcel/trunk/examples/Mini/ASTFunAppl.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree: Do not edit this line. ASTFunAppl.java */
 /* JJT: 0.3pre1 */
 

Modified: jakarta/bcel/trunk/examples/Mini/ASTFunDecl.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/ASTFunDecl.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/ASTFunDecl.java (original)
+++ jakarta/bcel/trunk/examples/Mini/ASTFunDecl.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree: Do not edit this line. ASTFunDecl.java */
 /* JJT: 0.3pre1 */
 

Modified: jakarta/bcel/trunk/examples/Mini/ASTIdent.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/ASTIdent.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/ASTIdent.java (original)
+++ jakarta/bcel/trunk/examples/Mini/ASTIdent.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree: Do not edit this line. ASTIdent.java */
 /* JJT: 0.3pre1 */
 

Modified: jakarta/bcel/trunk/examples/Mini/ASTIfExpr.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/ASTIfExpr.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/ASTIfExpr.java (original)
+++ jakarta/bcel/trunk/examples/Mini/ASTIfExpr.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree: Do not edit this line. ASTIfExpr.java */
 /* JJT: 0.3pre1 */
 

Modified: jakarta/bcel/trunk/examples/Mini/ASTInteger.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/ASTInteger.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/ASTInteger.java (original)
+++ jakarta/bcel/trunk/examples/Mini/ASTInteger.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree: Do not edit this line. ASTInteger.java */
 /* JJT: 0.3pre1 */
 

Modified: jakarta/bcel/trunk/examples/Mini/ASTLetExpr.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/ASTLetExpr.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/ASTLetExpr.java (original)
+++ jakarta/bcel/trunk/examples/Mini/ASTLetExpr.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree: Do not edit this line. ASTLetExpr.java */
 /* JJT: 0.3pre1 */
 

Modified: jakarta/bcel/trunk/examples/Mini/ASTProgram.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/ASTProgram.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/ASTProgram.java (original)
+++ jakarta/bcel/trunk/examples/Mini/ASTProgram.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree: Do not edit this line. ASTProgram.java */
 /* JJT: 0.3pre1 */
 

Modified: jakarta/bcel/trunk/examples/Mini/ASTTerm.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/ASTTerm.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/ASTTerm.java (original)
+++ jakarta/bcel/trunk/examples/Mini/ASTTerm.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree: Do not edit this line. ASTTerm.java */
 /* JJT: 0.3pre1 */
 

Modified: jakarta/bcel/trunk/examples/Mini/EnvEntry.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/EnvEntry.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/EnvEntry.java (original)
+++ jakarta/bcel/trunk/examples/Mini/EnvEntry.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 package Mini;
 
 /**

Modified: jakarta/bcel/trunk/examples/Mini/Environment.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/Environment.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/Environment.java (original)
+++ jakarta/bcel/trunk/examples/Mini/Environment.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 package Mini;
 
 import java.util.Vector;

Modified: jakarta/bcel/trunk/examples/Mini/Function.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/Function.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/Function.java (original)
+++ jakarta/bcel/trunk/examples/Mini/Function.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 package Mini;
 
 /**

Modified: jakarta/bcel/trunk/examples/Mini/JJTMiniParserState.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/JJTMiniParserState.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/JJTMiniParserState.java (original)
+++ jakarta/bcel/trunk/examples/Mini/JJTMiniParserState.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree: Do not edit this line. JJTMiniParserState.java */
 
 package Mini;

Modified: jakarta/bcel/trunk/examples/Mini/MiniC.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/MiniC.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/MiniC.java (original)
+++ jakarta/bcel/trunk/examples/Mini/MiniC.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 package Mini;
 import java.io.File;
 import java.io.FileOutputStream;

Modified: jakarta/bcel/trunk/examples/Mini/MiniParser.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/MiniParser.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/MiniParser.java (original)
+++ jakarta/bcel/trunk/examples/Mini/MiniParser.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree&JavaCC: Do not edit this line. MiniParser.java */
 package Mini;
 

Modified: jakarta/bcel/trunk/examples/Mini/MiniParserConstants.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/MiniParserConstants.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/MiniParserConstants.java (original)
+++ jakarta/bcel/trunk/examples/Mini/MiniParserConstants.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree&JavaCC: Do not edit this line. MiniParserConstants.java */
 package Mini;
 

Modified: jakarta/bcel/trunk/examples/Mini/MiniParserTokenManager.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/MiniParserTokenManager.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/MiniParserTokenManager.java (original)
+++ jakarta/bcel/trunk/examples/Mini/MiniParserTokenManager.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree&JavaCC: Do not edit this line. MiniParserTokenManager.java */
 package Mini;
 

Modified: jakarta/bcel/trunk/examples/Mini/MiniParserTreeConstants.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/MiniParserTreeConstants.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/MiniParserTreeConstants.java (original)
+++ jakarta/bcel/trunk/examples/Mini/MiniParserTreeConstants.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree: Do not edit this line. MiniParserTreeConstants.java */
 
 package Mini;

Modified: jakarta/bcel/trunk/examples/Mini/Node.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/Node.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/Node.java (original)
+++ jakarta/bcel/trunk/examples/Mini/Node.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree: Do not edit this line. Node.java */
 /* JJT: 0.3pre1 */
 

Modified: jakarta/bcel/trunk/examples/Mini/ParseException.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/ParseException.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/ParseException.java (original)
+++ jakarta/bcel/trunk/examples/Mini/ParseException.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JavaCC: Do not edit this line. ParseException.java Version 0.7pre6 */
 package Mini;
 

Modified: jakarta/bcel/trunk/examples/Mini/SimpleNode.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/SimpleNode.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/SimpleNode.java (original)
+++ jakarta/bcel/trunk/examples/Mini/SimpleNode.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JJTree: Do not edit this line. SimpleNode.java */
 /* JJT: 0.3pre1 */
 

Modified: jakarta/bcel/trunk/examples/Mini/Token.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/Token.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/Token.java (original)
+++ jakarta/bcel/trunk/examples/Mini/Token.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JavaCC: Do not edit this line. Token.java Version 0.7pre3 */
 package Mini;
 

Modified: jakarta/bcel/trunk/examples/Mini/TokenMgrError.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/TokenMgrError.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/TokenMgrError.java (original)
+++ jakarta/bcel/trunk/examples/Mini/TokenMgrError.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 /* Generated By:JavaCC: Do not edit this line. TokenMgrError.java Version 0.7pre2 */
 package Mini;
 

Modified: jakarta/bcel/trunk/examples/Mini/Variable.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Mini/Variable.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Mini/Variable.java (original)
+++ jakarta/bcel/trunk/examples/Mini/Variable.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 package Mini;
 import org.apache.bcel.generic.LocalVariableGen;
 

Modified: jakarta/bcel/trunk/examples/Package.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Package.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Package.java (original)
+++ jakarta/bcel/trunk/examples/Package.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 import java.io.FileOutputStream;
 import java.io.IOException;
 import java.io.InputStream;

Modified: jakarta/bcel/trunk/examples/Peephole.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/Peephole.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/Peephole.java (original)
+++ jakarta/bcel/trunk/examples/Peephole.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 import java.util.Iterator;
 import org.apache.bcel.Repository;
 import org.apache.bcel.classfile.JavaClass;

Modified: jakarta/bcel/trunk/examples/ProxyCreator.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/ProxyCreator.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/ProxyCreator.java (original)
+++ jakarta/bcel/trunk/examples/ProxyCreator.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 import java.awt.event.ActionEvent;
 import java.awt.event.ActionListener;
 import org.apache.bcel.Constants;

Modified: jakarta/bcel/trunk/examples/TransitiveHull.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/TransitiveHull.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/TransitiveHull.java (original)
+++ jakarta/bcel/trunk/examples/TransitiveHull.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 import java.util.Arrays;
 import java.util.regex.Pattern;
 import org.apache.bcel.Constants;

Modified: jakarta/bcel/trunk/examples/helloify.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/helloify.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/helloify.java (original)
+++ jakarta/bcel/trunk/examples/helloify.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 import org.apache.bcel.Constants;
 import org.apache.bcel.classfile.ClassParser;
 import org.apache.bcel.classfile.Code;

Modified: jakarta/bcel/trunk/examples/id.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/id.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/id.java (original)
+++ jakarta/bcel/trunk/examples/id.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 import org.apache.bcel.Repository;
 import org.apache.bcel.classfile.ClassParser;
 import org.apache.bcel.classfile.Field;

Modified: jakarta/bcel/trunk/examples/listclass.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/listclass.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/listclass.java (original)
+++ jakarta/bcel/trunk/examples/listclass.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 import java.io.IOException;
 import java.util.Hashtable;
 import java.util.Vector;

Modified: jakarta/bcel/trunk/examples/maxstack.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/maxstack.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/maxstack.java (original)
+++ jakarta/bcel/trunk/examples/maxstack.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 import org.apache.bcel.Repository;
 import org.apache.bcel.classfile.ClassParser;
 import org.apache.bcel.classfile.JavaClass;

Modified: jakarta/bcel/trunk/examples/patchclass.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/examples/patchclass.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/examples/patchclass.java (original)
+++ jakarta/bcel/trunk/examples/patchclass.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 import org.apache.bcel.classfile.ClassParser;
 import org.apache.bcel.classfile.Constant;
 import org.apache.bcel.classfile.ConstantUtf8;

Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/Constants.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/src/java/org/apache/bcel/Constants.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/Constants.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/Constants.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 package org.apache.bcel;
 
 /**

Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeInvisibleAnnotations.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeInvisibleAnnotations.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeInvisibleAnnotations.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeInvisibleAnnotations.java Mon May 29 05:13:21 2006
@@ -1,5 +1,5 @@
 /*
- * Copyright  2000-2005 The Apache Software Foundation
+ * Copyright  2000-2004 The Apache Software Foundation
  *
  *  Licensed under the Apache License, Version 2.0 (the "License"); 
  *  you may not use this file except in compliance with the License.

Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeInvisibleParameterAnnotations.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeInvisibleParameterAnnotations.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeInvisibleParameterAnnotations.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeInvisibleParameterAnnotations.java Mon May 29 05:13:21 2006
@@ -1,5 +1,5 @@
 /*
- * Copyright  2000-2005 The Apache Software Foundation
+ * Copyright  2000-2004 The Apache Software Foundation
  *
  *  Licensed under the Apache License, Version 2.0 (the "License"); 
  *  you may not use this file except in compliance with the License.

Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeVisibleAnnotations.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeVisibleAnnotations.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeVisibleAnnotations.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeVisibleAnnotations.java Mon May 29 05:13:21 2006
@@ -1,5 +1,5 @@
 /*
- * Copyright  2000-2005 The Apache Software Foundation
+ * Copyright  2000-2004 The Apache Software Foundation
  *
  *  Licensed under the Apache License, Version 2.0 (the "License"); 
  *  you may not use this file except in compliance with the License.

Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeVisibleParameterAnnotations.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeVisibleParameterAnnotations.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeVisibleParameterAnnotations.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/classfile/RuntimeVisibleParameterAnnotations.java Mon May 29 05:13:21 2006
@@ -1,5 +1,5 @@
 /*
- * Copyright  2000-2005 The Apache Software Foundation
+ * Copyright  2000-2004 The Apache Software Foundation
  *
  *  Licensed under the Apache License, Version 2.0 (the "License"); 
  *  you may not use this file except in compliance with the License.

Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FieldGenOrMethodGen.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FieldGenOrMethodGen.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FieldGenOrMethodGen.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/generic/FieldGenOrMethodGen.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 package org.apache.bcel.generic;
 
 import java.util.ArrayList;

Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/util/BCELComparator.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/src/java/org/apache/bcel/util/BCELComparator.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/util/BCELComparator.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/util/BCELComparator.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 package org.apache.bcel.util;
 
 /**

Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/util/BCELFactory.java
URL: http://svn.apache.org/viewvc/jakarta/bcel/trunk/src/java/org/apache/bcel/util/BCELFactory.java?rev=410088&r1=410087&r2=410088&view=diff
==============================================================================
--- jakarta/bcel/trunk/src/java/org/apache/bcel/util/BCELFactory.java (original)
+++ jakarta/bcel/trunk/src/java/org/apache/bcel/util/BCELFactory.java Mon May 29 05:13:21 2006
@@ -1,3 +1,19 @@
+/*
+ * Copyright  2000-2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License"); 
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License. 
+ *
+ */
 package org.apache.bcel.util;
 
 import java.io.PrintWriter;



---------------------------------------------------------------------
To unsubscribe, e-mail: bcel-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: bcel-dev-help@jakarta.apache.org