List of usage examples for java.util AbstractList subclass-usage
From source file LazyList.java
/**
* List implementation with lazy array construction and modification tracking. The lazy array construction is a minor
* optimization, to save the added overhead of a backing array for lists which are frequently empty. The modification
* tracking feature supports filtered list construction with result caching.
*
* @author Dennis M. Sosnoski
From source file org.apache.mina.util.CircularQueue.java
/**
* A unbounded circular queue based on array.
*
* @author The Apache MINA Project (dev@mina.apache.org)
* @version $Rev: 762170 $, $Date: 2009-04-06 00:01:18 +0200 (Mon, 06 Apr 2009) $
*/
From source file com.alkacon.opencms.documentcenter.CmsDocumentList.java
/**
* Provides methods to create a special list of CmsDocument objects regarding language and attachment functionality.<p>
*
* After adding all documents to the list, the {@link #closeList()} method has to be called once
* before working with the list contents, e.g. before sorting the list or iterating it.<p>
*
From source file com.alkacon.opencms.v8.documentcenter.CmsDocumentList.java
/**
* Provides methods to create a special list of CmsDocument objects regarding language and attachment functionality.<p>
*
* After adding all documents to the list, the {@link #closeList()} method has to be called once
* before working with the list contents, e.g. before sorting the list or iterating it.<p>
*
From source file org.kawanfw.sql.jdbc.util.FileBackedList.java
/**
* @author Nicolas de Pomereu
*
* a concrete List of objects backed on a file
*
* @param <E>
From source file com.puppycrawl.tools.checkstyle.api.FileText.java
/**
* Represents the text contents of a file of arbitrary plain text type.
* <p>
* This class will be passed to instances of class FileSetCheck by
* Checker. It implements a string list to ensure backwards
* compatibility, but can be extended in the future to allow more
From source file aarddict.Volume.java
public final class Volume extends AbstractList<Entry> { static class FormatException extends Exception { public FormatException(String detailMessage) { super(detailMessage);
From source file hu.netmind.beankeeper.query.impl.LazyListImpl.java
/**
* This list is a lazy-loading list. It receives a query statement, and
* if an item is queried, the list runs the approriate search statement
* and loads the referred item (and a given neighbourhood).
* @author Brautigam Robert
* @version Revision: $Revision$
From source file org.apache.ojb.odmg.collections.DListImpl.java
/**
*
* @author Thomas Mahler
* @author <a href="mailto:armin@codeAuLait.de">Armin Waibel</a>
* @version $Id: DListImpl.java,v 1.27.2.5 2005/12/21 22:29:50 tomdz Exp $
*/
From source file org.asoem.greyfish.utils.collect.BitString.java
/** * An immutable, finite and ordered sequence of binary values. */ @ThreadSafe public abstract class BitString extends AbstractList<Boolean> {