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

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

Introduction

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

Usage

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

/**
 * Default implementation of the {@link UtilitySet}
 * interface.
 *
 * @author Willi Schoenborn
 * @param <E> the generic element type

From source file org.opendaylight.ovsdb.lib.notation.OvsdbSet.java

@JsonDeserialize(converter = Converter.SetConverter.class)
@JsonSerialize(using = OvsdbSetSerializer.class)
public class OvsdbSet<T> extends ForwardingSet<T> {

    Set<T> target = null;

From source file buildcraft.transport.TravelerSet.java

public class TravelerSet extends ForwardingSet<TravelingItem> {

    public boolean iterating;

    private final BiMap<Integer, TravelingItem> items = HashBiMap.create();
    private final Set<TravelingItem> toLoad = new HashSet<TravelingItem>();

From source file com.eincs.decanter.utils.collection.SetWrapper.java

/**
 * @author Jung-Haeng Lee
 */
public class SetWrapper<E> extends ForwardingSet<E> {

    private final Set<E> delegate;

From source file ch.raffael.util.common.collections.USet.java

/**
 * @author <a href="mailto:herzog@raffael.ch">Raffael Herzog</a>
 */
public class USet<T> extends ForwardingSet<T> implements Serializable {
    private static final long serialVersionUID = 12022401L;

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

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

From source file org.decisiondeck.jlp.LpLinearImmutable.java

public class LpLinearImmutable<T> extends ForwardingSet<LpTerm<T>> implements LpLinear<T> {
    private final LpLinear<T> m_delegate;

    public LpLinearImmutable(Collection<LpTerm<T>> terms) {
        m_delegate = new LpLinearImpl<T>(terms);
    }

From source file com.haulmont.cuba.gui.model.impl.ObservableSet.java

/**
 *
 */
@SuppressWarnings("NullableProblems")
public class ObservableSet<T> extends ForwardingSet<T> {

From source file org.jclouds.fujitsu.fgcp.xml.internal.SetWithStatusResponse.java

/**
 * Special base class extending (forwardable) Set with fields for the elements
 * that FGCP XML responses specify.
 * <p>
 * This is useful for methods that return a Set and the XML response has no
 * other elements but the set of elements (and message and status of course).

From source file org.gitools.heatmap.ObservableSet.java

public abstract class ObservableSet<T> extends ForwardingSet<T> {

    private Set<T> innerSet;

    public ObservableSet(Set<T> innerSet) {
        this.innerSet = innerSet;