List of usage examples for java.util ArrayList subclass-usage
From source file org.jannocessor.collection.impl.PowerArrayList.java
public class PowerArrayList<E> extends ArrayList<E> implements PowerList<E> { private static final long serialVersionUID = 1L; private List<CollectionOperationListener<E>> listeners = new ArrayList<CollectionOperationListener<E>>();
From source file org.komusubi.feeder.sns.twitter.TweetMessage.java
/** * @author jun.ozeki */ public class TweetMessage extends ArrayList<Script> implements Message { /**
From source file de.biomedical_imaging.ij.nanotrackj.Track.java
public class Track extends ArrayList<Step> implements Comparable<Track> { /** * */ private static final long serialVersionUID = 1L; private int startFrame;
From source file knop.psfj.BeadFrameList.java
/** * The Class BeadFrameList. */ public class BeadFrameList extends ArrayList<BeadFrame> { /**
From source file FilterGUIListModel.java
/** * FilterGUIListModel combines an ArrayList with a ListModel for ease of use. */ public class FilterGUIListModel extends ArrayList implements ListModel { protected Object source;
From source file org.sakaiproject.util.MergedList.java
/** * Contains the list of merged/non-merged channels */ public class MergedList extends ArrayList { /** * Used to create a reference. This is unique to each caller, so we
From source file org.pentaho.agilebi.modeler.models.annotations.ModelAnnotationGroup.java
@MetaStoreElementType(name = "ModelAnnotationGroup", description = "ModelAnnotationGroup") public class ModelAnnotationGroup extends ArrayList<ModelAnnotation> { @MetaStoreAttribute private String id;
From source file com.qmetry.qaf.automation.ui.webdriver.ElementList.java
/** * com.qmetry.qaf.automation.ui.webdriver.List.java * * @author chirag */ public class ElementList<T extends QAFWebElement> extends ArrayList<T> {
From source file org.opensha.commons.geo.LocationList.java
/**
* A customized <code>ArrayList</code> of <code>Location</code>s. In addition to
* providing the functionality of the <code>List</code> interface, this class
* provides several custom methods for querying and manipulating a collection of
* <code>Location</code>s.
*
From source file org.deeplearning4j.util.StringGrid.java
/** * String matrix * @author Adam Gibson * */ public class StringGrid extends ArrayList<List<String>> {