Example usage for com.google.common.collect ForwardingCollection subclass-usage

List of usage examples for com.google.common.collect ForwardingCollection subclass-usage

Introduction

In this page you can find the example usage for com.google.common.collect ForwardingCollection subclass-usage.

Usage

From source file mods.railcraft.common.util.collections.RevolvingList.java

/**
 *
 * @author CovertJaguar <http://www.railcraft.info>
 * @param <T>
 */
public class RevolvingList<T> extends ForwardingCollection<T> {

From source file buildcraft.core.utils.RevolvingList.java

public class RevolvingList<T> extends ForwardingCollection<T> {

    private Deque<T> list = new LinkedList<T>();

    public RevolvingList() {
    }

From source file buildcraft.core.lib.utils.RevolvingList.java

public class RevolvingList<T> extends ForwardingCollection<T> {

    private Deque<T> list = new LinkedList<T>();

    public RevolvingList() {
    }

From source file de.cosmocode.collections.utility.ForwardingUtilityCollection.java

/**
 * Implementation of the {@link UtilityCollection} interface
 * delegating all calls to an underlying {@link UtilityCollection}.
 *
 * @author Willi Schoenborn
 * @param <E> the generic element type

From source file de.cosmocode.collections.utility.DefaultUtilityCollection.java

/**
 * Default implementation of the {@link UtilityCollection}
 * interface delegating the iterator implementation
 * to {@link Utility#asUtilityIterator(java.util.Iterator)}.
 *
 * @author Willi Schoenborn

From source file forestry.core.utils.RevolvingList.java

/**
 *
 * @author CovertJaguar <http://www.railcraft.info>
 * @param <T>
 */
public class RevolvingList<T> extends ForwardingCollection<T> {

From source file nextmethod.codedom.CodePackageImportCollection.java

public class CodePackageImportCollection extends ForwardingCollection<CodePackageImport> implements Serializable {

    private static final long serialVersionUID = -3609814966958487242L;

    private final Set<CodePackageImport> data;
    private final HashMap<String, CodePackageImport> keys;

From source file de.cosmocode.collections.callback.CallbackCollection.java

/**
 * A composable {@link Collection} which pokes the specified {@link Callback}
 * on structural changes.
 *
 * @author Willi Schoenborn
 * @param <E> the generic element type

From source file de.cosmocode.collections.event.EventCollection.java

/**
 * A {@link Collection} composed with an {@link EventListener}.
 *
 * @since 1.5
 * @author Willi Schoenborn
 * @param <E> generic element type

From source file net.derquinse.common.collect.ForwardingHierarchy.java

/**
 * A hierarchy that forward its method calls to a delegated hierarchy.
 * @author Andres Rodriguez
 * @param <E> Type of the elements in the hierarchy.
 */
public abstract class ForwardingHierarchy<E> extends ForwardingCollection<E> implements Hierarchy<E> {