|
||||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.util.AbstractCollection
java.util.AbstractList
org.eclipse.emf.common.util.DelegatingEList
org.eclipse.emf.common.util.DelegatingEList.UnmodifiableEList
An unmodifiable version of DelegatingEList
.
Nested Class Summary |
---|
Nested classes inherited from class org.eclipse.emf.common.util.DelegatingEList |
---|
DelegatingEList.EIterator, DelegatingEList.EListIterator, DelegatingEList.NonResolvingEIterator, DelegatingEList.NonResolvingEListIterator, DelegatingEList.UnmodifiableEList |
Field Summary | |
---|---|
protected java.util.List |
underlyingList
|
Fields inherited from class java.util.AbstractList |
---|
modCount |
Constructor Summary | |
---|---|
DelegatingEList.UnmodifiableEList(java.util.List underlyingList)
Creates an initialized instance. |
Method Summary | |
---|---|
void |
add(int index,
java.lang.Object object)
Throws an exception. |
boolean |
add(java.lang.Object object)
Throws an exception. |
boolean |
addAll(java.util.Collection collection)
Throws an exception. |
boolean |
addAll(int index,
java.util.Collection collection)
Throws an exception. |
void |
clear()
Throws an exception. |
protected java.util.List |
delegateList()
Returns the list that acts as the backing store. |
java.util.Iterator |
iterator()
Returns the basic iterator . |
java.util.ListIterator |
listIterator()
Returns the basic list iterator . |
java.util.ListIterator |
listIterator(int index)
Returns the basic list iterator advanced to the index. |
java.lang.Object |
move(int targetIndex,
int sourceIndex)
Throws an exception. |
void |
move(int index,
java.lang.Object object)
Throws an exception. |
java.lang.Object |
remove(int index)
Throws an exception. |
boolean |
remove(java.lang.Object object)
Throws an exception. |
boolean |
removeAll(java.util.Collection collection)
Throws an exception. |
boolean |
retainAll(java.util.Collection collection)
Throws an exception. |
java.lang.Object |
set(int index,
java.lang.Object object)
Throws an exception. |
Methods inherited from class org.eclipse.emf.common.util.DelegatingEList |
---|
addAllUnique, addAllUnique, addAllUnique, addAllUnique, addUnique, addUnique, basicGet, basicIterator, basicList, basicListIterator, basicListIterator, canContainNull, contains, containsAll, delegateAdd, delegateAdd, delegateBasicList, delegateClear, delegateContains, delegateContainsAll, delegateEquals, delegateGet, delegateHashCode, delegateIndexOf, delegateIsEmpty, delegateIterator, delegateLastIndexOf, delegateListIterator, delegateRemove, delegateSet, delegateSize, delegateToArray, delegateToArray, delegateToString, didAdd, didChange, didClear, didMove, didRemove, didSet, doClear, equalObjects, equals, get, getDuplicates, getNonDuplicates, hashCode, indexOf, isEmpty, isUnique, lastIndexOf, resolve, setUnique, size, toArray, toArray, toString, useEquals, validate |
Methods inherited from class java.util.AbstractList |
---|
removeRange, subList |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.List |
---|
subList |
Field Detail |
protected java.util.List underlyingList
Constructor Detail |
public DelegatingEList.UnmodifiableEList(java.util.List underlyingList)
underlyingList
- the backing store list.Method Detail |
protected java.util.List delegateList()
DelegatingEList
delegateList
in class DelegatingEList
public java.lang.Object set(int index, java.lang.Object object)
set
in interface java.util.List
set
in class DelegatingEList
index
- the position in question.object
- the object to set.
java.lang.UnsupportedOperationException
- always because it's not supported.DelegatingEList.setUnique(int, java.lang.Object)
public boolean add(java.lang.Object object)
add
in interface java.util.List
add
in class DelegatingEList
object
- the object to be added.
java.lang.UnsupportedOperationException
- always because it's not supported.DelegatingEList.addUnique(Object)
public void add(int index, java.lang.Object object)
add
in interface java.util.List
add
in class DelegatingEList
object
- the object to be added.
java.lang.UnsupportedOperationException
- always because it's not supported.DelegatingEList.addUnique(int, Object)
public boolean addAll(java.util.Collection collection)
addAll
in interface java.util.List
addAll
in class DelegatingEList
collection
- the collection of objects to be added.
java.lang.UnsupportedOperationException
- always because it's not supported.DelegatingEList.addAllUnique(Collection)
public boolean addAll(int index, java.util.Collection collection)
addAll
in interface java.util.List
addAll
in class DelegatingEList
index
- the index at which to add.collection
- the collection of objects to be added.
java.lang.UnsupportedOperationException
- always because it's not supported.DelegatingEList.addAllUnique(int, Collection)
public boolean remove(java.lang.Object object)
remove
in interface java.util.List
remove
in class DelegatingEList
object
- the object to be removed.
java.lang.UnsupportedOperationException
- always because it's not supported.public java.lang.Object remove(int index)
remove
in interface java.util.List
remove
in class DelegatingEList
index
- the position of the object to remove.
java.lang.UnsupportedOperationException
- always because it's not supported.public boolean removeAll(java.util.Collection collection)
removeAll
in interface java.util.List
removeAll
in class DelegatingEList
collection
- the collection of objects to be removed.
java.lang.UnsupportedOperationException
- always because it's not supported.public boolean retainAll(java.util.Collection collection)
retainAll
in interface java.util.List
retainAll
in class DelegatingEList
collection
- the collection of objects to be retained.
java.lang.UnsupportedOperationException
- always because it's not supported.public void clear()
clear
in interface java.util.List
clear
in class DelegatingEList
java.lang.UnsupportedOperationException
- always because it's not supported.public void move(int index, java.lang.Object object)
move
in interface EList
move
in class DelegatingEList
index
- the new position for the object in the list.object
- the object to be moved.
java.lang.UnsupportedOperationException
- always because it's not supported.public java.lang.Object move(int targetIndex, int sourceIndex)
move
in interface EList
move
in class DelegatingEList
targetIndex
- the new position for the object in the list.sourceIndex
- the old position of the object in the list.
java.lang.UnsupportedOperationException
- always because it's not supported.public java.util.Iterator iterator()
basic iterator
.
iterator
in interface java.util.List
iterator
in class DelegatingEList
DelegatingEList.EIterator
public java.util.ListIterator listIterator()
basic list iterator
.
listIterator
in interface java.util.List
listIterator
in class DelegatingEList
DelegatingEList.EListIterator
public java.util.ListIterator listIterator(int index)
basic list iterator
advanced to the index.
listIterator
in interface java.util.List
listIterator
in class DelegatingEList
index
- the starting index.
DelegatingEList.EListIterator
|
Copyright 2001-2006 IBM Corporation and others. All Rights Reserved. |
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |