List of usage examples for java.util ArrayList subclass-usage
From source file org.nuxeo.ecm.core.api.security.impl.ACLImpl.java
/** * An ACL implementation. * * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> */ public class ACLImpl extends ArrayList<ACE> implements ACL {
From source file br.com.vpsa.oauth2android.common.ParameterList.java
/**
* The ParameterList class extends the <code>ArrayList<NameValuePair> </code> for the sole
* purpose to make the handling of parameters easier.
* <pre>
* Instead of instantiating a List like this:
* <code>List<NameValuePair> myList = new ArrayList<NameValuePair>()</code>
From source file org.gerstner.oauth2android.common.ParameterList.java
/**
* The ParameterList class extends the <code>ArrayList<NameValuePair> </code> for the sole
* purpose to make the handling of parameters easier.
* <pre>
* Instead of instantiating a List like this:
* <code>List<NameValuePair> myList = new ArrayList<NameValuePair>()</code>
From source file org.opennms.protocols.http.FormFields.java
/** * The Class FormFields. * * @author <a href="mailto:agalue@opennms.org">Alejandro Galue</a> */ @XmlRootElement(name = "form-fields")
From source file org.sakaiproject.metaobj.shared.model.ElementListBean.java
/**
* Created by IntelliJ IDEA.
* User: John Ellis
* Date: Mar 11, 2004
* Time: 3:55:06 PM
* To change this template use File | Settings | File Templates.
From source file dk.dbc.rawrepo.oai.OAIIdentifierCollection.java
/** * * @author DBC {@literal <dbc.dk>} */ public class OAIIdentifierCollection extends ArrayList<OAIIdentifier> {
From source file org.jabsorb.ext.DataList.java
/**
* A List that can be easily populated with data from a Database.
* The idea is that you can execute a query and grab all the results
* of that query all in one line of code.
*
* The ResultSet metadata from the query is used to construct this List
From source file org.apache.axis.handlers.HandlerChainImpl.java
/** * Implementation of HandlerChain */ public class HandlerChainImpl extends ArrayList implements javax.xml.rpc.handler.HandlerChain { protected static Log log = LogFactory.getLog(HandlerChainImpl.class.getName());
From source file hudson.matrix.AxisList.java
/** * List of {@link Axis}. * * @author Kohsuke Kawaguchi */ public class AxisList extends ArrayList<Axis> {
From source file TheReplacements.java
class TextFile extends ArrayList { // Tools to read and write files as single strings: public static String read(String fileName) throws IOException { StringBuffer sb = new StringBuffer(); BufferedReader in = new BufferedReader(new FileReader(fileName)); String s;