List of usage examples for java.util AbstractList subclass-usage
From source file com.gargoylesoftware.htmlunit.html.XPathDomNodeList.java
/**
* An XPath implementation of {@link org.w3c.dom.NodeList}.
*
* @version $Revision: 6701 $
* @author Daniel Gredler
* @author <a href="mailto:tom.anderson@univ.oxon.org">Tom Anderson</a>
From source file com.autentia.common.util.PagedList.java
/**
* Esta clase representa una lista paginada, esto es, no tiene en memoria todos los posibles elementos de la lista,
* sino slo la pgina que se est usando en cada momento. Si se pide un elemetno que no est en la pgina actual, se
* descarta la informacin actual y se carga la pgina correspondiente. La carga de esta informacin se hace mediante la
* interfaz {@link PagedListDataProvider}.
* <p>
From source file org.mxupdate.test.data.util.DataList.java
/**
* Implements a list of data objects.
*
* @author The MxUpdate Team
* @param <DATA>
*/
From source file org.apache.isis.core.metamodel.spec.FreeStandingList.java
/** * A list returned from an action, ie not associated or owned by any entity. */ public class FreeStandingList extends AbstractList<ObjectAdapter> { private final List<ObjectAdapter> instances;
From source file com.quatico.base.aem.test.model.Properties.java
public class Properties extends AbstractList<Object> { private final List<Object> data; public Properties(Object... data) throws IllegalArgumentException { if (data.length > 0 && data.length % 2 != 0) { throw new IllegalArgumentException("Cannot handle odd number of property entries.");
From source file org.springmodules.xt.model.introductor.collections.IntroductorList.java
/**
* {@link java.util.List} decorator, which makes all the contained objects implementing a given array of interfaces, while leaving
* the original target list unmodified.<br>
* This builds on top of {@link DynamicIntroductor} implementations.<br>
* <b>Important</b>: This decorated list is <b>immutable</b>.
*
From source file com.evolveum.midpoint.prism.xjc.PrismContainerArrayList.java
/**
* @author lazyman
*
* Changed to extend AbstractList instead of ArrayList, as some functionality of ArrayList
* (e.g. its optimized Itr class) does not work with class (PrismContainerArrayList), as of Java7.
*
From source file io.nuclei.box.adapter.PagedList.java
/**
* A list that manages a set of in-memory pages and the loading
* of those pages. It also maintains some meta information used
* by the PagedListAdapter to determine where to place loading indicators.
*
* @param <T>
From source file nuclei.persistence.adapter.PagedList.java
/**
* A list that manages a set of in-memory pages and the loading
* of those pages. It also maintains some meta information used
* by the PagedListAdapter to determine where to place loading indicators.
*
* @param <T>
From source file org.grails.datastore.mapping.riak.collection.RiakEntityIndex.java
/** * @author J. Brisbin <jon@jbrisbin.com> */ @SuppressWarnings({ "hiding", "rawtypes" }) public class RiakEntityIndex<Long> extends AbstractList implements List, RiakCollection {