Example usage for java.util ArrayList subclass-usage

List of usage examples for java.util ArrayList subclass-usage

Introduction

In this page you can find the example usage for java.util ArrayList subclass-usage.

Usage

From source file org.apache.pig.data.FileList.java

/**
 * This class extends ArrayList<File> to add a finalize() that
 * calls delete on the files .
 * This helps in getting rid of the finalize() in the classes such 
 * as DefaultAbstractBag, and they can be freed up without waiting 
 * for finalize to be called. Only if those classes have spilled to

From source file com.storageroomapp.client.Collections.java

public class Collections extends ArrayList<Collection> {
    static private final long serialVersionUID = 1L;

    protected Application parentApplication = null;
    protected String url = null;

From source file info.financialecology.finance.utilities.datastruct.DoubleTimeSeriesList.java

/**
 * @author Gilbert Peffer
 *
 */
public class DoubleTimeSeriesList extends ArrayList<DoubleTimeSeries> {

From source file org.gradle.performance.measure.DataSeries.java

/**
 * A collection of measurements of some given units.
 */
public class DataSeries<Q> extends ArrayList<Amount<Q>> {
    private final Amount<Q> average;
    private final Amount<Q> median;

From source file org.androidsoft.games.memory.kids.model.TileList.java

/**
 *
 * @author pierre
 */
public class TileList extends ArrayList<Tile> {

From source file ArrayListStack.java

/**
 * A faster, smaller stack implementation. ArrayListStack is final and unsynchronized (the JDK's
 * methods are synchronized). In addition you can set the initial capacity if you want via the
 * ArrayListStack(int) constructor.
 * 
 * @author Jonathan Locke

From source file net.xy.jcms.shared.types.StringList.java

/**
 * typesation of an stringlist
 * 
 * @author xyan
 * 
 */

From source file org.atomspace.camel.component.tinkerforge.generator.model.Elements.java

@JsonDeserialize(using = ElementsDeserializer.class)
@JsonIgnoreProperties(ignoreUnknown = true)
public class Elements extends ArrayList<Element> {

    private static final long serialVersionUID = 1L;

From source file moefou4j.internal.json.ResponseListImpl.java

/**
 * @author Yusuke Yamamoto - yusuke at mac.com
 * @since Twitter4J 2.1.3
 */
class ResponseListImpl<T> extends ArrayList<T> implements ResponseList<T> {

From source file cn.ac.ict.htc.tools.ArrayListWritable.java

/**
 * <p>
 * Writable extension of a Java ArrayList. Elements in the list must be homogeneous and must
 * implement Hadoop's Writable interface.
 * </p>
 *