Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 18227 invoked from network); 15 Jan 2010 16:57:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 15 Jan 2010 16:57:47 -0000 Received: (qmail 92781 invoked by uid 500); 15 Jan 2010 16:57:46 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 92704 invoked by uid 500); 15 Jan 2010 16:57:46 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 92695 invoked by uid 99); 15 Jan 2010 16:57:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Jan 2010 16:57:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Jan 2010 16:57:44 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CDE702388A60; Fri, 15 Jan 2010 16:57:24 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r899713 - in /commons/proper/collections/trunk/src: java/org/apache/commons/collections/ java/org/apache/commons/collections/iterators/ java/org/apache/commons/collections/splitmap/ test/org/apache/commons/collections/ test/org/apache/commo... Date: Fri, 15 Jan 2010 16:57:24 -0000 To: commits@commons.apache.org From: bayard@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100115165724.CDE702388A60@eris.apache.org> Author: bayard Date: Fri Jan 15 16:57:24 2010 New Revision: 899713 URL: http://svn.apache.org/viewvc?rev=899713&view=rev Log: Adding missing license headers per RAT report Modified: commons/proper/collections/trunk/src/java/org/apache/commons/collections/IndexedCollection.java commons/proper/collections/trunk/src/java/org/apache/commons/collections/iterators/AbstractUntypedIteratorDecorator.java commons/proper/collections/trunk/src/java/org/apache/commons/collections/splitmap/SplitMapUtils.java commons/proper/collections/trunk/src/test/org/apache/commons/collections/AbstractDecoratedCollectionTest.java commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestIndexedCollection.java commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/BasicPredicateTestBase.java commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/MockPredicateTestBase.java commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestAll.java commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestCompositePredicate.java commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestEqualPredicate.java commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestNullPredicate.java Modified: commons/proper/collections/trunk/src/java/org/apache/commons/collections/IndexedCollection.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/java/org/apache/commons/collections/IndexedCollection.java?rev=899713&r1=899712&r2=899713&view=diff ============================================================================== --- commons/proper/collections/trunk/src/java/org/apache/commons/collections/IndexedCollection.java (original) +++ commons/proper/collections/trunk/src/java/org/apache/commons/collections/IndexedCollection.java Fri Jan 15 16:57:24 2010 @@ -1,3 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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.commons.collections; import java.util.Collection; Modified: commons/proper/collections/trunk/src/java/org/apache/commons/collections/iterators/AbstractUntypedIteratorDecorator.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/java/org/apache/commons/collections/iterators/AbstractUntypedIteratorDecorator.java?rev=899713&r1=899712&r2=899713&view=diff ============================================================================== --- commons/proper/collections/trunk/src/java/org/apache/commons/collections/iterators/AbstractUntypedIteratorDecorator.java (original) +++ commons/proper/collections/trunk/src/java/org/apache/commons/collections/iterators/AbstractUntypedIteratorDecorator.java Fri Jan 15 16:57:24 2010 @@ -1,5 +1,18 @@ -/** +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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.commons.collections.iterators; @@ -51,4 +64,4 @@ iterator.remove(); } -} \ No newline at end of file +} Modified: commons/proper/collections/trunk/src/java/org/apache/commons/collections/splitmap/SplitMapUtils.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/java/org/apache/commons/collections/splitmap/SplitMapUtils.java?rev=899713&r1=899712&r2=899713&view=diff ============================================================================== --- commons/proper/collections/trunk/src/java/org/apache/commons/collections/splitmap/SplitMapUtils.java (original) +++ commons/proper/collections/trunk/src/java/org/apache/commons/collections/splitmap/SplitMapUtils.java Fri Jan 15 16:57:24 2010 @@ -1,3 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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.commons.collections.splitmap; import java.util.Collection; Modified: commons/proper/collections/trunk/src/test/org/apache/commons/collections/AbstractDecoratedCollectionTest.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/AbstractDecoratedCollectionTest.java?rev=899713&r1=899712&r2=899713&view=diff ============================================================================== --- commons/proper/collections/trunk/src/test/org/apache/commons/collections/AbstractDecoratedCollectionTest.java (original) +++ commons/proper/collections/trunk/src/test/org/apache/commons/collections/AbstractDecoratedCollectionTest.java Fri Jan 15 16:57:24 2010 @@ -1,3 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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.commons.collections; import java.util.ArrayList; Modified: commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestIndexedCollection.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestIndexedCollection.java?rev=899713&r1=899712&r2=899713&view=diff ============================================================================== --- commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestIndexedCollection.java (original) +++ commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestIndexedCollection.java Fri Jan 15 16:57:24 2010 @@ -1,3 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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.commons.collections; import static java.util.Arrays.asList; Modified: commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/BasicPredicateTestBase.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/BasicPredicateTestBase.java?rev=899713&r1=899712&r2=899713&view=diff ============================================================================== --- commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/BasicPredicateTestBase.java (original) +++ commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/BasicPredicateTestBase.java Fri Jan 15 16:57:24 2010 @@ -1,3 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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.commons.collections.functors; import org.apache.commons.collections.Predicate; Modified: commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/MockPredicateTestBase.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/MockPredicateTestBase.java?rev=899713&r1=899712&r2=899713&view=diff ============================================================================== --- commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/MockPredicateTestBase.java (original) +++ commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/MockPredicateTestBase.java Fri Jan 15 16:57:24 2010 @@ -1,3 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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.commons.collections.functors; import static org.easymock.EasyMock.verify; Modified: commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestAll.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestAll.java?rev=899713&r1=899712&r2=899713&view=diff ============================================================================== --- commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestAll.java (original) +++ commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestAll.java Fri Jan 15 16:57:24 2010 @@ -1,3 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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.commons.collections.functors; import junit.framework.TestCase; Modified: commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestCompositePredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestCompositePredicate.java?rev=899713&r1=899712&r2=899713&view=diff ============================================================================== --- commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestCompositePredicate.java (original) +++ commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestCompositePredicate.java Fri Jan 15 16:57:24 2010 @@ -1,3 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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.commons.collections.functors; import org.apache.commons.collections.Predicate; Modified: commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestEqualPredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestEqualPredicate.java?rev=899713&r1=899712&r2=899713&view=diff ============================================================================== --- commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestEqualPredicate.java (original) +++ commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestEqualPredicate.java Fri Jan 15 16:57:24 2010 @@ -1,3 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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.commons.collections.functors; import static org.apache.commons.collections.functors.EqualPredicate.equalPredicate; Modified: commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestNullPredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestNullPredicate.java?rev=899713&r1=899712&r2=899713&view=diff ============================================================================== --- commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestNullPredicate.java (original) +++ commons/proper/collections/trunk/src/test/org/apache/commons/collections/functors/TestNullPredicate.java Fri Jan 15 16:57:24 2010 @@ -1,3 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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.commons.collections.functors; import static org.apache.commons.collections.functors.NullPredicate.nullPredicate;