|
Groovy 2.2.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object javax.swing.AbstractListModel groovy.swing.impl.ListWrapperListModel
public class ListWrapperListModel extends AbstractListModel
A ListModel
implementation that's backed by a live List
.
Constructor Summary | |
ListWrapperListModel(List delegateList)
|
Method Summary | |
---|---|
void
|
add(int i, E e)
|
boolean
|
add(E e)
|
boolean
|
addAll(Collection es)
|
boolean
|
addAll(int i, Collection es)
|
void
|
clear()
|
boolean
|
contains(Object o)
|
boolean
|
containsAll(Collection objects)
|
E
|
get(int i)
|
List
|
getDelegateList()
|
Object
|
getElementAt(int i)
|
int
|
getSize()
|
int
|
indexOf(Object o)
|
boolean
|
isEmpty()
|
Iterator
|
iterator()
|
int
|
lastIndexOf(Object o)
|
ListIterator
|
listIterator()
|
ListIterator
|
listIterator(int i)
|
E
|
remove(int i)
|
boolean
|
remove(Object o)
|
void
|
removeRange(int fromIndex, int toIndex)
|
E
|
set(int i, E e)
|
Object[]
|
toArray(Object[] ts)
|
Object[]
|
toArray()
|
Methods inherited from class AbstractListModel | |
---|---|
addListDataListener, removeListDataListener, getListDataListeners, getListeners, wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll, getElementAt, getSize |
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Constructor Detail |
---|
public ListWrapperListModel(List delegateList)
Method Detail |
---|
public void add(int i, E e)
public boolean add(E e)
public boolean addAll(Collection es)
public boolean addAll(int i, Collection es)
public void clear()
public boolean contains(Object o)
public boolean containsAll(Collection objects)
public E get(int i)
public List getDelegateList()
public Object getElementAt(int i)
public int getSize()
public int indexOf(Object o)
public boolean isEmpty()
public Iterator iterator()
public int lastIndexOf(Object o)
public ListIterator listIterator()
public ListIterator listIterator(int i)
public E remove(int i)
public boolean remove(Object o)
public void removeRange(int fromIndex, int toIndex)
public E set(int i, E e)
public Object[] toArray(Object[] ts)
public Object[] toArray()
Copyright © 2003-2013 The Codehaus. All rights reserved.