List of usage examples for java.util ArrayList subclass-usage
From source file com.github.jsonj.JsonArray.java
/** * Representation of json arrays. */ public class JsonArray extends ArrayList<JsonElement> implements JsonElement { private static final long serialVersionUID = -1269731858619421388L; private boolean immutable = false;
From source file FastArrayList.java
/**
* <p>A customized implementation of <code>java.util.ArrayList</code> designed
* to operate in a multithreaded environment where the large majority of
* method calls are read-only, instead of structural changes. When operating
* in "fast" mode, read calls are non-synchronized and write calls perform the
* following steps:</p>
From source file com.projity.graphic.configuration.SpreadSheetFieldArray.java
/** * */ public class SpreadSheetFieldArray extends ArrayList implements NamedItem, Cloneable, WorkspaceSetting { private static final long serialVersionUID = 6310711336308730391L; transient Map map = new LinkedHashMap();
From source file com.concursive.connect.web.modules.documents.dao.FileItemList.java
/**
* A list of files stored in the filesystem and referenced in a database
*
* @author matt rajkowski
* @version $Id$
* @created February 8, 2002
From source file fr.cls.atoll.motu.processor.wps.StringList.java
/**
*
* (C) Copyright 2009-2010, by CLS (Collecte Localisation Satellites)
*
* @version $Revision: 1.1 $ - $Date: 2009-03-18 12:18:22 $
* @author <a href="mailto:dearith@cls.fr">Didier Earith</a>
From source file gov.anl.cue.arcane.engine.matrix.MatrixModel.java
/**
* The MatrixModel class supports the MatrixEngine class by
* representing an example solution. Each MatrixModel instance
* is an individual chromosome in the genetic algorithm. Each
* MatrixModel instance contains a list of variables and a set
* of fitness equations. Note that stocks are also called levels,
From source file NimbleTree.java
class TreeNode<E> extends ArrayList<TreeNode<E>> { private TreeNode<E> parent; private E data; private int id;
From source file org.cosmo.common.template.Parser.java
class BindingContainer extends ArrayList { public BindBinding _bindBinding; public Stack<CaseBinding> _caseBindings = new Stack(); public void recordCaseSegementAndBindingIndex(int segIdx, int bindingIdx) { if (_caseBindings.peek() != null) {
From source file kilim.tools.Asm.java
@SuppressWarnings("serial") class StringList extends ArrayList<String> { public String[] toArray() { String[] ret = new String[size()]; return this.toArray(ret); }