jicarilla-suf/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections ArrayEnumeration.java,1.1.1.1,1.2 ArrayStack.java,1.1.1.1,1.2 BinaryHeap.java,1.1.1.1,1.2 BucketMap.java,1.1.1.1,1.2 Buffer.java,1.1.1.1,1.2 BufferOverflowException.java,1.1.1.1,1.2 BufferUnderflowException.java,1.1.1.1,1.2 CircularBuffer.java,1.1.1.1,1.2 FixedSizeBuffer.java,1.1.1.1,1.2 IteratorEnumeration.java,1.1.1.1,1.2 ListUtils.java,1.1.1.1,1.2 PriorityQueue.java,1.1.1.1,1.2 SynchronizedPriorityQueue.java,1.1.1.1,1.2 VariableSizeBuffer.java,1.1.1.1,1.2

Leo Simons <[email protected]> Sun, 11 Apr 2004 20:54:58 +0000
Newsgroups gmane.comp.java.jicarilla.cvs
Message-ID <[email protected]>
Update of /cvsroot/jicarilla/jicarilla-suf/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24597/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections

Modified Files:
	ArrayEnumeration.java ArrayStack.java BinaryHeap.java 
	BucketMap.java Buffer.java BufferOverflowException.java 
	BufferUnderflowException.java CircularBuffer.java 
	FixedSizeBuffer.java IteratorEnumeration.java ListUtils.java 
	PriorityQueue.java SynchronizedPriorityQueue.java 
	VariableSizeBuffer.java 
Log Message:
Add "we modified stuff" disclaimer as required by license

Index: PriorityQueue.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections/PriorityQueue.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- PriorityQueue.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ PriorityQueue.java	11 Apr 2004 20:54:55 -0000	1.2
@@ -13,6 +13,27 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are 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.avalon.excalibur.collections;
 

Index: BinaryHeap.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections/BinaryHeap.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- BinaryHeap.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ BinaryHeap.java	11 Apr 2004 20:54:55 -0000	1.2
@@ -13,6 +13,27 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are 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.avalon.excalibur.collections;
 

Index: CircularBuffer.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections/CircularBuffer.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- CircularBuffer.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ CircularBuffer.java	11 Apr 2004 20:54:55 -0000	1.2
@@ -13,6 +13,27 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are 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.avalon.excalibur.collections;
 

Index: Buffer.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections/Buffer.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Buffer.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ Buffer.java	11 Apr 2004 20:54:55 -0000	1.2
@@ -13,6 +13,27 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are 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.avalon.excalibur.collections;
 

Index: BucketMap.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections/BucketMap.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- BucketMap.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ BucketMap.java	11 Apr 2004 20:54:55 -0000	1.2
@@ -13,6 +13,27 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are 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.avalon.excalibur.collections;
 

Index: IteratorEnumeration.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections/IteratorEnumeration.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- IteratorEnumeration.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ IteratorEnumeration.java	11 Apr 2004 20:54:55 -0000	1.2
@@ -13,6 +13,27 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are 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.avalon.excalibur.collections;
 

Index: ArrayEnumeration.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections/ArrayEnumeration.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- ArrayEnumeration.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ ArrayEnumeration.java	11 Apr 2004 20:54:55 -0000	1.2
@@ -13,6 +13,27 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are 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.avalon.excalibur.collections;
 

Index: ListUtils.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections/ListUtils.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- ListUtils.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ ListUtils.java	11 Apr 2004 20:54:55 -0000	1.2
@@ -13,6 +13,27 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are 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.avalon.excalibur.collections;
 

Index: BufferOverflowException.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections/BufferOverflowException.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- BufferOverflowException.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ BufferOverflowException.java	11 Apr 2004 20:54:55 -0000	1.2
@@ -13,6 +13,27 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are 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.avalon.excalibur.collections;
 

Index: ArrayStack.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections/ArrayStack.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- ArrayStack.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ ArrayStack.java	11 Apr 2004 20:54:55 -0000	1.2
@@ -13,6 +13,27 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are 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.avalon.excalibur.collections;
 

Index: VariableSizeBuffer.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections/VariableSizeBuffer.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- VariableSizeBuffer.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ VariableSizeBuffer.java	11 Apr 2004 20:54:55 -0000	1.2
@@ -13,6 +13,27 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are 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.avalon.excalibur.collections;
 

Index: FixedSizeBuffer.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections/FixedSizeBuffer.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- FixedSizeBuffer.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ FixedSizeBuffer.java	11 Apr 2004 20:54:55 -0000	1.2
@@ -13,6 +13,27 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are 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.avalon.excalibur.collections;
 

Index: SynchronizedPriorityQueue.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections/SynchronizedPriorityQueue.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- SynchronizedPriorityQueue.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ SynchronizedPriorityQueue.java	11 Apr 2004 20:54:55 -0000	1.2
@@ -13,6 +13,27 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are 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.avalon.excalibur.collections;
 

Index: BufferUnderflowException.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/compatibility/src/java/org/apache/avalon/excalibur/collections/BufferUnderflowException.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- BufferUnderflowException.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ BufferUnderflowException.java	11 Apr 2004 20:54:55 -0000	1.2
@@ -13,6 +13,27 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are 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.avalon.excalibur.collections;
 



-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click