Author: tcurdt
Date: Mon May 29 05:12:19 2006
New Revision: 410087

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

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

Modified: jakarta/bcel/branches/BCEL_5_2/examples/HelloWorldBuilder.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/HelloWorldBuilder.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/HelloWorldBuilder.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/HelloWorldBuilder.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/JasminVisitor.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/JasminVisitor.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/JasminVisitor.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/JasminVisitor.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/ASCII_CharStream.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASCII_CharStream.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASCII_CharStream.java 
(original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASCII_CharStream.java Mon May 
29 05:12:19 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/branches/BCEL_5_2/examples/Mini/ASTExpr.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTExpr.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTExpr.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTExpr.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/ASTFactor.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTFactor.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTFactor.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTFactor.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/ASTFunAppl.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTFunAppl.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTFunAppl.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTFunAppl.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/ASTFunDecl.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTFunDecl.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTFunDecl.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTFunDecl.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/ASTIdent.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTIdent.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTIdent.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTIdent.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/ASTIfExpr.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTIfExpr.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTIfExpr.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTIfExpr.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/ASTInteger.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTInteger.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTInteger.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTInteger.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/ASTLetExpr.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTLetExpr.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTLetExpr.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTLetExpr.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/ASTProgram.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTProgram.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTProgram.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTProgram.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/ASTTerm.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTTerm.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTTerm.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/ASTTerm.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/EnvEntry.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/EnvEntry.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/EnvEntry.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/EnvEntry.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/Environment.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/Environment.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/Environment.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/Environment.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/Function.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/Function.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/Function.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/Function.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/JJTMiniParserState.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/JJTMiniParserState.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/JJTMiniParserState.java 
(original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/JJTMiniParserState.java Mon 
May 29 05:12:19 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/branches/BCEL_5_2/examples/Mini/MiniC.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/MiniC.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/MiniC.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/MiniC.java Mon May 29 05:12:19 
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/branches/BCEL_5_2/examples/Mini/MiniParser.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/MiniParser.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/MiniParser.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/MiniParser.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/MiniParserConstants.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/MiniParserConstants.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/MiniParserConstants.java 
(original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/MiniParserConstants.java Mon 
May 29 05:12:19 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/branches/BCEL_5_2/examples/Mini/MiniParserTokenManager.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/MiniParserTokenManager.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/MiniParserTokenManager.java 
(original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/MiniParserTokenManager.java 
Mon May 29 05:12:19 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/branches/BCEL_5_2/examples/Mini/MiniParserTreeConstants.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/MiniParserTreeConstants.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/MiniParserTreeConstants.java 
(original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/MiniParserTreeConstants.java 
Mon May 29 05:12:19 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/branches/BCEL_5_2/examples/Mini/Node.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/Node.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/Node.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/Node.java Mon May 29 05:12:19 
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/branches/BCEL_5_2/examples/Mini/ParseException.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/ParseException.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/ParseException.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/ParseException.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/SimpleNode.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/SimpleNode.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/SimpleNode.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/SimpleNode.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/Token.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/Token.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/Token.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/Token.java Mon May 29 05:12:19 
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/branches/BCEL_5_2/examples/Mini/TokenMgrError.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/TokenMgrError.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/TokenMgrError.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/TokenMgrError.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Mini/Variable.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Mini/Variable.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Mini/Variable.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Mini/Variable.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/Package.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Package.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Package.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Package.java Mon May 29 05:12:19 
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/branches/BCEL_5_2/examples/Peephole.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/Peephole.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/Peephole.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/Peephole.java Mon May 29 05:12:19 
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/branches/BCEL_5_2/examples/ProxyCreator.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/ProxyCreator.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/ProxyCreator.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/ProxyCreator.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/TransitiveHull.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/TransitiveHull.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/TransitiveHull.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/TransitiveHull.java Mon May 29 
05:12:19 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/branches/BCEL_5_2/examples/helloify.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/helloify.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/helloify.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/helloify.java Mon May 29 05:12:19 
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/branches/BCEL_5_2/examples/id.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/id.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/id.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/id.java Mon May 29 05:12:19 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/branches/BCEL_5_2/examples/listclass.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/listclass.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/listclass.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/listclass.java Mon May 29 05:12:19 
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/branches/BCEL_5_2/examples/maxstack.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/maxstack.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/maxstack.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/maxstack.java Mon May 29 05:12:19 
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/branches/BCEL_5_2/examples/patchclass.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/examples/patchclass.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/examples/patchclass.java (original)
+++ jakarta/bcel/branches/BCEL_5_2/examples/patchclass.java Mon May 29 05:12:19 
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/branches/BCEL_5_2/src/java/org/apache/bcel/Constants.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/src/java/org/apache/bcel/Constants.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- jakarta/bcel/branches/BCEL_5_2/src/java/org/apache/bcel/Constants.java 
(original)
+++ jakarta/bcel/branches/BCEL_5_2/src/java/org/apache/bcel/Constants.java Mon 
May 29 05:12:19 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/branches/BCEL_5_2/src/java/org/apache/bcel/generic/FieldGenOrMethodGen.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/src/java/org/apache/bcel/generic/FieldGenOrMethodGen.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- 
jakarta/bcel/branches/BCEL_5_2/src/java/org/apache/bcel/generic/FieldGenOrMethodGen.java
 (original)
+++ 
jakarta/bcel/branches/BCEL_5_2/src/java/org/apache/bcel/generic/FieldGenOrMethodGen.java
 Mon May 29 05:12:19 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/branches/BCEL_5_2/src/java/org/apache/bcel/util/BCELComparator.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/src/java/org/apache/bcel/util/BCELComparator.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- 
jakarta/bcel/branches/BCEL_5_2/src/java/org/apache/bcel/util/BCELComparator.java
 (original)
+++ 
jakarta/bcel/branches/BCEL_5_2/src/java/org/apache/bcel/util/BCELComparator.java
 Mon May 29 05:12:19 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/branches/BCEL_5_2/src/java/org/apache/bcel/util/BCELFactory.java
URL: 
http://svn.apache.org/viewvc/jakarta/bcel/branches/BCEL_5_2/src/java/org/apache/bcel/util/BCELFactory.java?rev=410087&r1=410086&r2=410087&view=diff
==============================================================================
--- 
jakarta/bcel/branches/BCEL_5_2/src/java/org/apache/bcel/util/BCELFactory.java 
(original)
+++ 
jakarta/bcel/branches/BCEL_5_2/src/java/org/apache/bcel/util/BCELFactory.java 
Mon May 29 05:12:19 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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to