c3664b7f38
Reviewed-by: martin, psandoz
85 lines
2.5 KiB
Java
85 lines
2.5 KiB
Java
/*
|
|
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
* accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU General Public License version
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*/
|
|
import java.util.AbstractCollection;
|
|
import java.util.ArrayList;
|
|
import java.util.Collection;
|
|
import java.util.Iterator;
|
|
import java.util.function.Supplier;
|
|
|
|
/**
|
|
* @library
|
|
*
|
|
* A simple mutable collection implementation that provides only default
|
|
* implementations of all methods. ie. none of the Collection interface default
|
|
* methods have overridden implementations.
|
|
*
|
|
* @param <E> type of collection elements
|
|
*/
|
|
public class ExtendsAbstractCollection<E> extends AbstractCollection<E> {
|
|
|
|
protected final Collection<E> coll;
|
|
|
|
public ExtendsAbstractCollection() {
|
|
this(ArrayList<E>::new);
|
|
}
|
|
|
|
public ExtendsAbstractCollection(Collection<E> source) {
|
|
this();
|
|
coll.addAll(source);
|
|
}
|
|
|
|
protected ExtendsAbstractCollection(Supplier<Collection<E>> backer) {
|
|
this.coll = backer.get();
|
|
}
|
|
|
|
public boolean add(E element) {
|
|
return coll.add(element);
|
|
}
|
|
|
|
public boolean remove(Object element) {
|
|
return coll.remove(element);
|
|
}
|
|
|
|
public Iterator<E> iterator() {
|
|
return new Iterator<E>() {
|
|
Iterator<E> source = coll.iterator();
|
|
|
|
public boolean hasNext() {
|
|
return source.hasNext();
|
|
}
|
|
|
|
public E next() {
|
|
return source.next();
|
|
}
|
|
|
|
public void remove() {
|
|
source.remove();
|
|
}
|
|
};
|
|
}
|
|
|
|
public int size() {
|
|
return coll.size();
|
|
}
|
|
}
|