Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@apache.org Received: (qmail 1064 invoked from network); 9 May 2003 18:37:16 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 9 May 2003 18:37:16 -0000 Received: (qmail 9511 invoked by uid 97); 9 May 2003 18:39:24 -0000 Delivered-To: qmlist-jakarta-archive-commons-dev@nagoya.betaversion.org Received: (qmail 9502 invoked from network); 9 May 2003 18:39:24 -0000 Received: from daedalus.apache.org (HELO apache.org) (208.185.179.12) by nagoya.betaversion.org with SMTP; 9 May 2003 18:39:24 -0000 Received: (qmail 96154 invoked by uid 500); 9 May 2003 18:36:15 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 96117 invoked by uid 500); 9 May 2003 18:36:15 -0000 Received: (qmail 96104 invoked from network); 9 May 2003 18:36:15 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 9 May 2003 18:36:15 -0000 Received: (qmail 11772 invoked by uid 1529); 9 May 2003 18:36:14 -0000 Date: 9 May 2003 18:36:14 -0000 Message-ID: <20030509183614.11771.qmail@icarus.apache.org> From: scolebourne@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections BoundedCollection.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N scolebourne 2003/05/09 11:36:14 Modified: collections/src/java/org/apache/commons/collections BoundedCollection.java Log: Update licence and file layout Revision Changes Path 1.2 +10 -8 jakarta-commons/collections/src/java/org/apache/commons/collections/BoundedCollection.java Index: BoundedCollection.java =================================================================== RCS file: /home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/BoundedCollection.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- BoundedCollection.java 24 Nov 2002 16:23:21 -0000 1.1 +++ BoundedCollection.java 9 May 2003 18:36:14 -0000 1.2 @@ -1,10 +1,10 @@ /* - * + * $Header$ * ==================================================================== * * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2002-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without @@ -20,11 +20,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgment: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgment may appear in the software itself, + * if and wherever such third-party acknowledgments normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -33,7 +33,7 @@ * * 5. Products derived from this software may not be called "Apache" * nor may "Apache" appear in their names without prior written - * permission of the Apache Group. + * permission of the Apache Software Foundation. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES @@ -58,6 +58,7 @@ package org.apache.commons.collections; import java.util.Collection; + /** * A BoundedCollection is a collection that is bounded in size. *

@@ -65,10 +66,11 @@ * maximum number of elements. This interface allows the querying of details * associated with the maximum number of elements. * - * @since 2.2 + * @since Commons Collections 3.0 + * @version $Revision$ $Date$ + * * @author Herve Quiroz * @author Stephen Colebourne - * @version $Id$ */ public interface BoundedCollection extends Collection { --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org