List of usage examples for java.util ArrayList subclass-usage
From source file org.broadleafcommerce.common.extensibility.context.merge.DynamicResourceIterator.java
/**
* This class serves as a basic iterator for a list of source files to be
* merged. The interesting part, however, is that additional resources
* may be inserted at any time at the current iterator position.
*
* @author Jeff Fischer
From source file com.github.tarrsalah.jaxrs.core.Tasks.java
/** * * @author tarrsalah */ @JsonRootName("tasks") public class Tasks extends ArrayList<Task> {
From source file uk.ac.tgac.rampart.stage.analyse.asm.stats.AssemblyStatsTable.java
/** * User: maplesod * Date: 01/02/13 * Time: 13:47 */ public class AssemblyStatsTable extends ArrayList<AssemblyStats> {
From source file tw.edu.sju.ee.eea.module.iepe.project.data.Pattern.java
/** * * @author Leo */ public class Pattern extends ArrayList<double[]> {
From source file com.troyhisted.inputfield.util.DynaList.java
/**
* Specialized list designed for use with BeanUtils.
*
* <p>
* This class alters the behavior of a list in a couple important ways. First, calling <em>get</em> with an index
* greater than the size of the list will result in <em>null</em> being returned instead of an
From source file com.processpuzzle.fundamental_types.domain.ParameterValueList.java
public class ParameterValueList extends ArrayList<ParameterValue> { public static final String LIST_DELIMITERS = ";"; private static final long serialVersionUID = 1341134724325891672L; public ParameterValueList() { super();
From source file fr.syncarnet.tasks.TaskList.java
public class TaskList extends ArrayList<Task> implements Serializable { private static final String TAG = "SynCarnet"; private DeletedTasks deletedTasks = new DeletedTasks(); private ArrayList<String> projects = new ArrayList<String>(); /**
From source file SortedArrayList.java
/**
* <p>ArrayList with sorted contents. Each Object added to the list is added in
* the order determined by <code>Collections.sort(obj)</code></p>
*
* @author : $Author: hohonuuli $
* @version : $Revision: 332 $
From source file com.google.code.pathlet.web.ognl.impl.IncreasableList.java
/**
* A simple list that guarantees that inserting and retrieving objects will always work regardless
* of the current size of the list. Upon insertion, type conversion is also performed if necessary.
* Empty beans will be created to fill the gap between the current list size and the requested index
* using ObjectFactory's {@link ObjectFactory#buildBean(Class,java.util.Map) buildBean} method.
*
From source file org.createnet.raptor.models.data.ResultSet.java
/** * * @author Luca Capra <luca.capra@gmail.com> */ public class ResultSet extends ArrayList<RecordSet> {