Convert inner classes to package scope so they are not in API at present

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131455 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-12-25 00:50:10 +00:00
parent 5c1a8d15f0
commit 80f62bd7a6
5 changed files with 20 additions and 25 deletions

View File

@ -1,5 +1,5 @@
/* /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/list/FixedSizeList.java,v 1.2 2003/12/11 23:00:32 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/list/FixedSizeList.java,v 1.3 2003/12/25 00:46:02 scolebourne Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
@ -73,7 +73,7 @@ import org.apache.commons.collections.iterators.AbstractListIteratorDecorator;
* The set method is allowed (as it doesn't change the list size). * The set method is allowed (as it doesn't change the list size).
* *
* @since Commons Collections 3.0 * @since Commons Collections 3.0
* @version $Revision: 1.2 $ $Date: 2003/12/11 23:00:32 $ * @version $Revision: 1.3 $ $Date: 2003/12/25 00:46:02 $
* *
* @author Stephen Colebourne * @author Stephen Colebourne
* @author Paul Jack * @author Paul Jack
@ -174,7 +174,7 @@ public class FixedSizeList extends AbstractListDecorator implements BoundedColle
/** /**
* List iterator that only permits changes via set() * List iterator that only permits changes via set()
*/ */
protected static class FixedSizeListIterator extends AbstractListIteratorDecorator { static class FixedSizeListIterator extends AbstractListIteratorDecorator {
protected FixedSizeListIterator(ListIterator iterator) { protected FixedSizeListIterator(ListIterator iterator) {
super(iterator); super(iterator);
} }
@ -184,9 +184,6 @@ public class FixedSizeList extends AbstractListDecorator implements BoundedColle
public void add(Object object) { public void add(Object object) {
throw new UnsupportedOperationException("List is fixed size"); throw new UnsupportedOperationException("List is fixed size");
} }
public void remove(Object object) {
throw new UnsupportedOperationException("List is fixed size");
}
} }
public boolean isFull() { public boolean isFull() {

View File

@ -1,5 +1,5 @@
/* /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/list/SetUniqueList.java,v 1.2 2003/12/03 11:37:44 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/list/SetUniqueList.java,v 1.3 2003/12/25 00:46:02 scolebourne Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
@ -83,7 +83,7 @@ import org.apache.commons.collections.set.UnmodifiableSet;
* This class offers the <code>List</code> interface implementation as well. * This class offers the <code>List</code> interface implementation as well.
* *
* @since Commons Collections 3.0 * @since Commons Collections 3.0
* @version $Revision: 1.2 $ $Date: 2003/12/03 11:37:44 $ * @version $Revision: 1.3 $ $Date: 2003/12/25 00:46:02 $
* *
* @author Matthew Hawthorne * @author Matthew Hawthorne
* @author Stephen Colebourne * @author Stephen Colebourne
@ -307,7 +307,7 @@ public class SetUniqueList extends AbstractListDecorator {
/** /**
* Inner class iterator. * Inner class iterator.
*/ */
protected static class SetListIterator extends AbstractIteratorDecorator { static class SetListIterator extends AbstractIteratorDecorator {
protected final Set set; protected final Set set;
protected Object last = null; protected Object last = null;
@ -327,13 +327,12 @@ public class SetUniqueList extends AbstractListDecorator {
set.remove(last); set.remove(last);
last = null; last = null;
} }
} }
/** /**
* Inner class iterator. * Inner class iterator.
*/ */
protected static class SetListListIterator extends AbstractListIteratorDecorator { static class SetListListIterator extends AbstractListIteratorDecorator {
protected final Set set; protected final Set set;
protected Object last = null; protected Object last = null;
@ -369,7 +368,6 @@ public class SetUniqueList extends AbstractListDecorator {
public void set(Object object) { public void set(Object object) {
throw new UnsupportedOperationException("ListIterator does not support set"); throw new UnsupportedOperationException("ListIterator does not support set");
} }
} }
} }

View File

@ -1,5 +1,5 @@
/* /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/map/PredicatedMap.java,v 1.2 2003/12/05 20:23:57 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/map/PredicatedMap.java,v 1.3 2003/12/25 00:49:14 scolebourne Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
@ -75,7 +75,7 @@ import org.apache.commons.collections.keyvalue.AbstractMapEntryDecorator;
* is thrown. * is thrown.
* *
* @since Commons Collections 3.0 * @since Commons Collections 3.0
* @version $Revision: 1.2 $ $Date: 2003/12/05 20:23:57 $ * @version $Revision: 1.3 $ $Date: 2003/12/25 00:49:14 $
* *
* @author Stephen Colebourne * @author Stephen Colebourne
* @author Paul Jack * @author Paul Jack
@ -163,7 +163,7 @@ public class PredicatedMap extends AbstractMapDecorator {
/** /**
* Implementation of an entry set that checks (predicates) additions. * Implementation of an entry set that checks (predicates) additions.
*/ */
protected static class PredicatedMapEntrySet extends AbstractCollectionDecorator implements Set { static class PredicatedMapEntrySet extends AbstractCollectionDecorator implements Set {
/** The predicate to use */ /** The predicate to use */
private final Predicate valuePredicate; private final Predicate valuePredicate;
@ -214,7 +214,7 @@ public class PredicatedMap extends AbstractMapDecorator {
/** /**
* Implementation of an entry set iterator. * Implementation of an entry set iterator.
*/ */
protected static class PredicatedMapEntrySetIterator extends AbstractIteratorDecorator { static class PredicatedMapEntrySetIterator extends AbstractIteratorDecorator {
/** The predicate to use */ /** The predicate to use */
private final Predicate valuePredicate; private final Predicate valuePredicate;
@ -233,7 +233,7 @@ public class PredicatedMap extends AbstractMapDecorator {
/** /**
* Implementation of a map entry that checks (predicates) additions. * Implementation of a map entry that checks (predicates) additions.
*/ */
protected static class PredicatedMapEntry extends AbstractMapEntryDecorator { static class PredicatedMapEntry extends AbstractMapEntryDecorator {
/** The predicate to use */ /** The predicate to use */
private final Predicate predicate; private final Predicate predicate;

View File

@ -1,5 +1,5 @@
/* /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/map/TransformedMap.java,v 1.2 2003/12/05 20:23:57 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/map/TransformedMap.java,v 1.3 2003/12/25 00:49:14 scolebourne Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
@ -77,7 +77,7 @@ import org.apache.commons.collections.keyvalue.AbstractMapEntryDecorator;
* use the Integer form to remove objects. * use the Integer form to remove objects.
* *
* @since Commons Collections 3.0 * @since Commons Collections 3.0
* @version $Revision: 1.2 $ $Date: 2003/12/05 20:23:57 $ * @version $Revision: 1.3 $ $Date: 2003/12/25 00:49:14 $
* *
* @author Stephen Colebourne * @author Stephen Colebourne
*/ */
@ -192,7 +192,7 @@ public class TransformedMap extends AbstractMapDecorator {
/** /**
* Implementation of an entry set that uses a transforming map entry. * Implementation of an entry set that uses a transforming map entry.
*/ */
protected static class TransformedMapEntrySet extends AbstractCollectionDecorator implements Set { static class TransformedMapEntrySet extends AbstractCollectionDecorator implements Set {
/** The transformer to use */ /** The transformer to use */
private final Transformer valueTransformer; private final Transformer valueTransformer;
@ -243,7 +243,7 @@ public class TransformedMap extends AbstractMapDecorator {
/** /**
* Implementation of an entry set iterator. * Implementation of an entry set iterator.
*/ */
protected static class TransformedMapEntrySetIterator extends AbstractIteratorDecorator { static class TransformedMapEntrySetIterator extends AbstractIteratorDecorator {
/** The transformer to use */ /** The transformer to use */
private final Transformer valueTransformer; private final Transformer valueTransformer;
@ -262,7 +262,7 @@ public class TransformedMap extends AbstractMapDecorator {
/** /**
* Implementation of a map entry that transforms additions. * Implementation of a map entry that transforms additions.
*/ */
protected static class TransformedMapEntry extends AbstractMapEntryDecorator { static class TransformedMapEntry extends AbstractMapEntryDecorator {
/** The transformer to use */ /** The transformer to use */
private final Transformer valueTransformer; private final Transformer valueTransformer;

View File

@ -1,5 +1,5 @@
/* /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/set/ListOrderedSet.java,v 1.2 2003/12/03 11:37:44 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/set/ListOrderedSet.java,v 1.3 2003/12/25 00:50:10 scolebourne Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
@ -84,7 +84,7 @@ import org.apache.commons.collections.list.UnmodifiableList;
* various interface methods (notably equals/hashCode) are incompatable with a set. * various interface methods (notably equals/hashCode) are incompatable with a set.
* *
* @since Commons Collections 3.0 * @since Commons Collections 3.0
* @version $Revision: 1.2 $ $Date: 2003/12/03 11:37:44 $ * @version $Revision: 1.3 $ $Date: 2003/12/25 00:50:10 $
* *
* @author Stephen Colebourne * @author Stephen Colebourne
* @author Henning P. Schmiedehausen * @author Henning P. Schmiedehausen
@ -281,7 +281,7 @@ public class ListOrderedSet extends AbstractSetDecorator implements Set {
/** /**
* Internal iterator handle remove. * Internal iterator handle remove.
*/ */
protected static class OrderedSetIterator extends AbstractIteratorDecorator { static class OrderedSetIterator extends AbstractIteratorDecorator {
/** Object we iterate on */ /** Object we iterate on */
protected final Collection set; protected final Collection set;