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 Main.java

/**
 * @author Lars Helge Overland
 */
class UniqueArrayList<E> extends ArrayList<E> {
    @Override
    public boolean add(E e) {

From source file org.goobi.production.model.bibliography.course.Course.java

/**
 * The class Course represents the course of appearance of a newspaper.
 *
 * <p>
 * A course of appearance consists of one or more blocks of time. Interruptions
 * in the course of appearance can be modeled by subsequent blocks.

From source file org.dlw.ai.blackboard.Blackboard.java

/**
 * This class is where the problem is addressed and solved. The blackboard is
 * the sandbox of the problem domain. This class was derived from the book,
 * Object Oriented Analysis and Design by Grady Booch, however the blackboard
 * model itself was first introduced by ... (add background)
 * 

From source file org.silverpeas.attachment.util.SimpleDocumentList.java

/**
 * This list provides some additional useful behaviors around simple documents.
 * @author: Yohann Chastagnier
 * @param <SIMPLE_DOCUMENT> the type of simple document that the list contains.
 */
public class SimpleDocumentList<SIMPLE_DOCUMENT extends SimpleDocument> extends ArrayList<SIMPLE_DOCUMENT> {

From source file heanetmedia.models.MediaList.java

public class MediaList extends ArrayList<Media> {

    private static final String listUrl = "https://media.heanet.ie/api/1.0/media_list.php?";
    private static final String checkLoginUrl = "https://media.heanet.ie/api/1.0/media_list.php?";
    public static final String bindUrl = "https://media.heanet.ie/secure/account/user_setguid.php?";
    private String userId;

From source file licenseUtil.LicensingList.java

/**
 * Created by Arne Binder (arne.b.binder@gmail.com) on 10.09.2015.
 */
public class LicensingList extends ArrayList<LicensingObject> {

    final static Logger logger = LoggerFactory.getLogger(LicensingList.class);

From source file org.kitodo.production.model.bibliography.course.Course.java

/**
 * The class Course represents the course of appearance of a newspaper.
 *
 * <p>
 * A course of appearance consists of one or more blocks of time. Interruptions
 * in the course of appearance can be modeled by subsequent blocks.

From source file uk.ac.ebi.mdk.apps.CommandLineMain.java

/**
 * CommandLineMain.java  EMBL-EBI  MetabolicDevelopmentKit  Jun 1, 2011
 * Abstract object for when a main is runnable on the common line. The object effectively provides
 * a wrapper for command option processing utilising the Apache Commons CLI library
 *
 * @author johnmay <johnmay@ebi.ac.uk, john.wilkinsonmay@gmail.com>

From source file knop.psfj.heatmap.FractionnedSpace.java

/**
 * The Class FractionnedSpace.
 */
public class FractionnedSpace extends ArrayList<Fraction> {

    /** The x. */

From source file com.openmeap.util.ThrowableList.java

public class ThrowableList extends ArrayList<Throwable> {

    private static String SEPARATOR = ", ";
    private Logger logger = LoggerFactory.getLogger(ThrowableList.class);

    public ThrowableList() {