@deprecate some replaced types
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130998 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
32a08d4038
commit
8d77ea4efc
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/AbstractLongArrayList.java,v 1.7 2003/01/11 21:28:02 rwaldhoff Exp $
|
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/AbstractLongArrayList.java,v 1.8 2003/04/09 06:24:07 rwaldhoff Exp $
|
||||||
* ====================================================================
|
* ====================================================================
|
||||||
* The Apache Software License, Version 1.1
|
* The Apache Software License, Version 1.1
|
||||||
*
|
*
|
||||||
|
@ -68,8 +68,12 @@ package org.apache.commons.collections.primitives;
|
||||||
* primitive values will be stored in an underlying primitive array, and
|
* primitive values will be stored in an underlying primitive array, and
|
||||||
* provides methods for manipulating the capacity of that array.<P>
|
* provides methods for manipulating the capacity of that array.<P>
|
||||||
*
|
*
|
||||||
* @version $Revision: 1.7 $ $Date: 2003/01/11 21:28:02 $
|
* @version $Revision: 1.8 $ $Date: 2003/04/09 06:24:07 $
|
||||||
* @author Rodney Waldhoff
|
* @author Rodney Waldhoff
|
||||||
|
*
|
||||||
|
* @deprecated A {@link LongList} implementation, such as {@link ArrayLongList}
|
||||||
|
* should be used instead. Use {@link LongListList} for {@link List}
|
||||||
|
* compatibility.
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractLongArrayList extends AbstractLongList {
|
public abstract class AbstractLongArrayList extends AbstractLongList {
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/LongArrayList.java,v 1.8 2003/01/11 21:28:02 rwaldhoff Exp $
|
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/LongArrayList.java,v 1.9 2003/04/09 06:24:07 rwaldhoff Exp $
|
||||||
* ====================================================================
|
* ====================================================================
|
||||||
* The Apache Software License, Version 1.1
|
* The Apache Software License, Version 1.1
|
||||||
*
|
*
|
||||||
|
@ -69,8 +69,10 @@ import java.io.Serializable;
|
||||||
* {@link java.util.ArrayList} of {@link Long} values and allows for
|
* {@link java.util.ArrayList} of {@link Long} values and allows for
|
||||||
* better compile-time type checking.<P>
|
* better compile-time type checking.<P>
|
||||||
*
|
*
|
||||||
* @version $Revision: 1.8 $ $Date: 2003/01/11 21:28:02 $
|
* @version $Revision: 1.9 $ $Date: 2003/04/09 06:24:07 $
|
||||||
* @author Rodney Waldhoff
|
* @author Rodney Waldhoff
|
||||||
|
* @deprecated {@link ArrayLongList} should be used instead.
|
||||||
|
* Use {@link LongListList} for {@link List} compatibility.
|
||||||
*/
|
*/
|
||||||
public class LongArrayList extends AbstractLongArrayList implements Serializable {
|
public class LongArrayList extends AbstractLongArrayList implements Serializable {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue