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

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

Introduction

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

Usage

From source file mod.HellCoder.things.gui.tooltip.ToolTip.java

public class ToolTip extends ForwardingList<ToolTipLine> {

    private final List<ToolTipLine> delegate = new ArrayList<ToolTipLine>();
    private final long delay;
    private long mouseOverStart;

From source file buildcraft.core.gui.tooltips.ToolTip.java

public class ToolTip extends ForwardingList<ToolTipLine> {

    private final List<ToolTipLine> delegate = new ArrayList<ToolTipLine>();
    private final long delay;
    private long mouseOverStart;

From source file com.thecodewarrior.notmine.buildcraft.core.gui.tooltips.ToolTip.java

public class ToolTip extends ForwardingList<ToolTipLine> {

    private final List<ToolTipLine> delegate = new ArrayList<ToolTipLine>();
    private final long delay;
    private long mouseOverStart;

From source file buildcraft.core.lib.gui.tooltips.ToolTip.java

public class ToolTip extends ForwardingList<ToolTipLine> {

    private final List<ToolTipLine> delegate = new ArrayList<ToolTipLine>();
    private final long delay;
    private long mouseOverStart;

From source file buildcraft.lib.gui.elem.ToolTip.java

public class ToolTip extends ForwardingList<String> implements RandomAccess {

    /* If the impl list class does not implement RandomAccess then the interface MUST be removed from this class */
    private final List<String> delegate = new ArrayList<>();
    private final long delay;
    private long mouseOverStart;

From source file mods.railcraft.common.gui.tooltips.ToolTip.java

/**
 *
 * @author CovertJaguar <http://www.railcraft.info/>
 */
public class ToolTip extends ForwardingList<ToolTipLine> {

From source file fm.last.lastfmlive.data.UserList.java

@Component
public class UserList extends ForwardingList<User> {

    private final List<User> delegate = new LinkedList<User>();

    @Override

From source file nextmethod.codedom.BaseCodeCollection.java

/**
 *
 */
@Internal
abstract class BaseCodeCollection<T> extends ForwardingList<T> {

From source file de.cosmocode.palava.scope.DestroyableList.java

/**
 * A {@link Destroyable} {@link List} implementation.
 *
 * @since 1.2
 * @author Willi Schoenborn
 * @param <E> the generic element type

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

/**
 * @author Jung-Haeng Lee
 */
public class ListWrapper<E> extends ForwardingList<E> {

    private final List<E> delegate;