Class AbstractList

Object
   |
   +--Collection
         |
         +--List
               |
               +--AbstractList
Direct Known Subclasses:
Vector, ArrayList

class AbstractList
extends List

Defined in jsjava.js


Field Summary
 Object jsjava_class
          
<static>  Object CONSTANT_ILLEGAL_INVOCATION
          
   
Fields inherited from class List
jsjava_class
   
Fields inherited from class Collection
jsjava_class
 
Constructor Summary
AbstractList()
            constructor
 
Method Summary
 void add(pvalue)
           Appends the specified element to the end of this list
 void addAll(c)
           Appends all of the elements in the specified collection to the end of this list
 void addAllIndexOf(index,c)
           Inserts all of the elements in the specified collection into this list at the specified position
 void addIndexOf(index,pvalue)
           Inserts the specified element at the specified position in this list
 void clear()
           Removes all of the elements from this list
 Object contains(pvalue)
           Returns true if this list contains the specified element.
 Object containsAll(c)
           Returns true if this collection contains all of the elements in the specified collection.
 Object get(index)
           Returns the element at the specified position in this list.
 Object getSize()
           Returns the number of elements in this list.
 Object indexOf(pvalue)
           Returns the index in this list of the first occurrence of the specified element, or -1 if this list does not contain this element.
 Object isEmpty()
           Returns true if this list contains no elements.
 Object iterator()
           Returns an iterator over the elements in this list in proper sequence.
 Object lastIndexOf(pvalue)
           Returns the index in this list of the last occurrence of the specified element, or -1 if this list does not contain this
 Object listIterator(index)
           Returns a list iterator of the elements in this list.
 void recapacity()
           Increases the capacity of and internally reorganizes this list, in order to accommodate and access its entries more efficiently.
 void remove(pvalue)
           Removes the first occurrence in this list of the specified element
 void removeAll(c)
           Removes all this list's elements that are also contained in the specified list
 void removeIndexOf(index)
           Removes the element at the specified position in this list
 void retainAll(c)
           Retains only the elements in this list that are contained in the specified list
 void set(index,pvalue)
           Replaces the element at the specified position in this list with the specified element
 Object size()
           Returns the number of elements in this list.
 Object subList(index1,index2)
           Returns a view of the portion of this list between the specified fromIndex, inclusive, and toIndex, exclusive.
 Object toArray()
           Returns an array containing all of the elements in this list in proper sequence.
 Object toString()
           Returns a string representation of this AbstractList object

Field Detail

jsjava_class

Object jsjava_class

CONSTANT_ILLEGAL_INVOCATION

<static> Object CONSTANT_ILLEGAL_INVOCATION

Constructor Detail

AbstractList

AbstractList()

Method Detail

add

void add(pvalue)

addAll

void addAll(c)

addAllIndexOf

void addAllIndexOf(index,c)

addIndexOf

void addIndexOf(index,pvalue)

clear

void clear()

contains

Object contains(pvalue)

containsAll

Object containsAll(c)

get

Object get(index)

getSize

Object getSize()

indexOf

Object indexOf(pvalue)

isEmpty

Object isEmpty()

iterator

Object iterator()

lastIndexOf

Object lastIndexOf(pvalue)

listIterator

Object listIterator(index)

recapacity

void recapacity()

remove

void remove(pvalue)

removeAll

void removeAll(c)

removeIndexOf

void removeIndexOf(index)

retainAll

void retainAll(c)

set

void set(index,pvalue)

size

Object size()

subList

Object subList(index1,index2)

toArray

Object toArray()

toString

Object toString()


Documentation generated by JSDoc on Fri Feb 29 14:47:35 2008