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 logicProteinHypernetwork.analysis.complexes.Complex.java

/**
 * Class Complex models a list of proteins that are in one complex.
 * 
 * @author Johannes Kster <johannes.koester@tu-dortmund.de>
 */
public class Complex extends ArrayList<Protein> implements Collection<Protein>, Comparable<Complex> {

From source file ipgraph.datastructure.DTree.java

/**
 * Copyright 2014-2015 maochen.org
 * Author: Maochen.G   contact@maochen.org
 * For the detail information about license, check the LICENSE.txt
 * <p>
 * This program is free software; you can redistribute it and/or modify

From source file com.grepsound.model.Playlists.java

/**
 *
 * {"genre":"Electronic",
 * "track_count":10,
 * "release_day":null,
 * "release_year":null,

From source file org.eclipse.smarthome.io.transport.mqtt.internal.TopicSubscribers.java

/**
 * A list of all subscribers for a given topic. This object also stores a regex version of the topic, where
 * the MQTT wildcards got replaced.
 *
 * @author David Graeff - Initial contribution
 */

From source file pl.rtshadow.jtriss.schema.Schema.java

public class Schema extends ArrayList<Pair<Class, ColumnType>> {
    private static final long serialVersionUID = 2779832184835370214L;

    public Schema addColumn(Class clazz, ColumnType type) {
        add(Pair.of(clazz, type));
        return this;

From source file edu.cornell.mannlib.vitro.webapp.auth.policy.PolicyList.java

/**
 * This is a List of Policy Objects that implements PolciyIface.  The intent
 * is to make it easy to query a list of policies for a PolicyDecision.  
 * 
 *  The Policy objects in the PolicyList are queried for authorization in order
 *  and return the first AUTHORIZED or UNAUTHROIZED decision.  INCONCLUSIVE

From source file org.bahmni.module.bahmnicore.model.BahmniFeedDrugOrders.java

public class BahmniFeedDrugOrders extends ArrayList<BahmniFeedDrugOrder> {

    public BahmniFeedDrugOrders(List<BahmniFeedDrugOrder> bahmniDrugOrders) {
        super(bahmniDrugOrders);
    }

From source file AIR.Common.collections.IGrouping.java

/**
 * @author Shiva BEHERA [sbehera@air.org]
 * 
 */
public class IGrouping<K, V> extends ArrayList<V> {
    private static final long serialVersionUID = 1L;

From source file com.norconex.commons.wicket.markup.html.chart.jqplot.Series.java

/**
 * JQPlot series.
 * @author Pascal Essiembre
 *
 * @param <X>
 *    x-axis type

From source file com.expedia.seiso.domain.entity.list.NodeList.java

@SuppressWarnings("serial")
@JsonIgnoreProperties(ignoreUnknown = true)
public class NodeList extends ArrayList<Node> {
}