Convert instance variable to protected
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131050 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f3d1e3c070
commit
645063548a
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/AbstractCollectionDecorator.java,v 1.2 2003/05/07 11:20:21 scolebourne Exp $
|
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/AbstractCollectionDecorator.java,v 1.3 2003/05/09 16:37:30 scolebourne Exp $
|
||||||
* ====================================================================
|
* ====================================================================
|
||||||
*
|
*
|
||||||
* The Apache Software License, Version 1.1
|
* The Apache Software License, Version 1.1
|
||||||
|
@ -77,7 +77,7 @@ import java.util.Iterator;
|
||||||
* to write an unmodifiable implementation it might provide a loophole.
|
* to write an unmodifiable implementation it might provide a loophole.
|
||||||
*
|
*
|
||||||
* @since Commons Collections 3.0
|
* @since Commons Collections 3.0
|
||||||
* @version $Revision: 1.2 $ $Date: 2003/05/07 11:20:21 $
|
* @version $Revision: 1.3 $ $Date: 2003/05/09 16:37:30 $
|
||||||
*
|
*
|
||||||
* @author Stephen Colebourne
|
* @author Stephen Colebourne
|
||||||
* @author Paul Jack
|
* @author Paul Jack
|
||||||
|
@ -85,7 +85,7 @@ import java.util.Iterator;
|
||||||
public abstract class AbstractCollectionDecorator implements Collection {
|
public abstract class AbstractCollectionDecorator implements Collection {
|
||||||
|
|
||||||
/** The collection being decorated */
|
/** The collection being decorated */
|
||||||
private final Collection collection;
|
protected final Collection collection;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor that wraps (not copies).
|
* Constructor that wraps (not copies).
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/AbstractListIteratorDecorator.java,v 1.3 2003/05/07 11:20:21 scolebourne Exp $
|
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/AbstractListIteratorDecorator.java,v 1.4 2003/05/09 16:37:29 scolebourne Exp $
|
||||||
* ====================================================================
|
* ====================================================================
|
||||||
*
|
*
|
||||||
* The Apache Software License, Version 1.1
|
* The Apache Software License, Version 1.1
|
||||||
|
@ -70,14 +70,14 @@ import java.util.ListIterator;
|
||||||
* for some list implementations.
|
* for some list implementations.
|
||||||
*
|
*
|
||||||
* @since Commons Collections 3.0
|
* @since Commons Collections 3.0
|
||||||
* @version $Revision: 1.3 $ $Date: 2003/05/07 11:20:21 $
|
* @version $Revision: 1.4 $ $Date: 2003/05/09 16:37:29 $
|
||||||
*
|
*
|
||||||
* @author Stephen Colebourne
|
* @author Stephen Colebourne
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractListIteratorDecorator implements ListIterator {
|
public abstract class AbstractListIteratorDecorator implements ListIterator {
|
||||||
|
|
||||||
/** The iterator to delegate to */
|
/** The iterator to delegate to */
|
||||||
private final ListIterator iterator;
|
protected final ListIterator iterator;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor that wraps the specified iterator.
|
* Constructor that wraps the specified iterator.
|
||||||
|
|
Loading…
Reference in New Issue