List of usage examples for java.util ArrayList subclass-usage
From source file org.michelcity2000.city.stock.ResourceHeap.java
@SuppressWarnings("serial") public class ResourceHeap extends ArrayList<Resource> { public ResourceHeap(Resource res) { this.add(res); }
From source file net.erdfelt.android.sdkfido.local.JarListing.java
/** * Represents a Jar Listing. */ public class JarListing extends ArrayList<String> { private static final long serialVersionUID = 1L; private List<String> classlist = new ArrayList<String>();
From source file org.coltram.nsd.upnp.ActionList.java
public class ActionList extends ArrayList<Action> { // private static Logger log = Logger.getLogger(ActionList.class.getName()); private HashMap<org.teleal.cling.model.meta.Action, ActionExecutor> actionExecutors = new HashMap<org.teleal.cling.model.meta.Action, ActionExecutor>(); private HashMap<StateVariable, StateVariableAccessor> stateVariableAccessors = new HashMap<StateVariable, StateVariableAccessor>();
From source file iocomms.subpos.ArrayLocations.java
class ArrayLocations extends ArrayList<SPSData> { ArrayList<SPSData> locations = new ArrayList<SPSData>(); public ArrayLocations() { super(); }
From source file org.artifactory.rest.common.list.KeyValueList.java
/**
* This class uses a <a href="http://www.regular-expressions.info/lookaround.html">Negative Lookbehind</a> regexp.
* <p>All the regexp are used instead of regular String split since we want to allow
* pipe, comma or equal as regular characters inside the key/value (by escaping them with a backslash).<br/>
* For example: "a\=a=1\,2" allows for key: a=a and value: 1,2 (one value instead of multiple values as comma usually means).
* <p/>
From source file com.storageroomapp.client.field.Fields.java
public class Fields extends ArrayList<GenericField<?>> { static private final long serialVersionUID = 1L; protected Collection parentCollection = null; private ArrayList<GenericField<?>> dataFieldsOnlyList = new ArrayList<GenericField<?>>();
From source file org.jboss.dashboard.commons.collections.LazyList.java
/**
* List designed to manage large amount of instances.
* <p>Internally, it only stores identifiers (as a list passed at initialization).
* Instances are only retrieved when invoking the <i>get(int index)</i>
* method of the list. This load-on-demand technique is also known as lazy materialization.
* <p>Instances can be added or removed from list via class methods.
From source file com.lugia.timetable.SubjectList.java
public class SubjectList extends ArrayList<Subject> { // only use on first initialization private static Context mContext; private static final String JSON_SUBJECT_ARRAY = "timeTable"; private static final String SAVEFILE = "data.ttg";
From source file com.anrisoftware.sscontrol.httpd.nginx.nginxconfig.NginxConfigList.java
/**
* Accumulate directives for locations with the same name.
*
* @author Erwin Mueller, erwin.mueller@deventm.org
* @since 1.0
*/
From source file org.docx4j.fonts.fop.fonts.substitute.FontSubstitutions.java
/** * Font substitutions */ public class FontSubstitutions extends java.util.ArrayList/*<Substitutions>*/ { private static final long serialVersionUID = -9173104935431899722L;