List of usage examples for java.util AbstractList subclass-usage
From source file me.ferrybig.javacoding.webmapper.util.JsonArrayCollection.java
/** * * @author Fernando */ public class JsonArrayCollection extends AbstractList<Object> {
From source file WeakList.java
public class WeakList extends AbstractList { /** * Reference queue for cleared weak references */ private final ReferenceQueue queue = new ReferenceQueue();
From source file ListOfLists.java
/**
* Creates list containing other lists, access another list's elements as it would belong
* to this list.
*
* @version $Name: $ - $Revision: 1.1.1.1 $ - $Date: 2005/04/07 18:36:24 $
* TODO Test
From source file org.mxupdate.test.data.util.TextValueList.java
/** * Text-value list. * * @author The MxUpdate Team */ public class TextValueList extends AbstractList {
From source file ArrayListWrapper.java
/**
* A class that wraps an array with a List interface.
*
* @author Chris Schultz <chris@christopherschultz.net$gt;
* @version $Revision: 685685 $ $Date: 2006-04-14 19:40:41 $
* @since 1.6
From source file org.mxupdate.test.data.util.StringValueList.java
/** * String-value list. * * @author The MxUpdate Team */ public class StringValueList extends AbstractList {
From source file org.mxupdate.test.data.util.SingleValueList.java
/** * Single-value list. * * @author The MxUpdate Team */ public class SingleValueList extends AbstractList {
From source file org.mxupdate.test.data.util.KeyValueList.java
/** * Key/value list. * * @author The MxUpdate Team */ public class KeyValueList extends AbstractList {
From source file de.micromata.genome.gwiki.utils.IntArray.java
/**
* List implementation based on int[].
*
* @author Roger Rene Kommer (r.kommer@micromata.de)
*
*/
From source file api.util.JsonArrayList.java
/**
* A java.util.List backed by JSONArray. You can add elements to the end, change, and remove elements in the middle, but not
* insert elements in the middle. An protected read(v) method is used to convert
* elements before retrieval, and write(v) to convert it before storage.
*
* @author Joseph Kapizza <joseph@rest4j.com>