|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TransformedList | |
---|---|
ca.odell.glazedlists | |
ca.odell.glazedlists.io | |
ca.odell.glazedlists.swing | |
ca.odell.glazedlists.swt |
Uses of TransformedList in ca.odell.glazedlists |
---|
Subclasses of TransformedList in ca.odell.glazedlists | |
---|---|
class |
CollectionList<S,E>
A list that acts like a tree in that it contains child elements to nodes contained in another list. |
class |
CompositeList<E>
An EventList composed of multiple source EventList s. |
class |
FilterList<E>
An EventList that shows a subset of the elements of a source
EventList . |
class |
FreezableList<E>
An EventList that shows the current contents of its source EventList . |
class |
FunctionList<S,E>
This List is meant to simplify the task of transforming each element of a source list to an element stored at the same index in this FunctionList. |
class |
GroupingList<E>
A grouping list contains elements which are themselves Lists. |
class |
ObservableElementList<E>
A list that fires update events whenever elements are modified in place. |
class |
PluggableList<E>
An EventList which delegates all List methods to a given source
EventList that may be replaced at runtime using
PluggableList.setSource(EventList) . |
class |
PopularityList<E>
An EventList that shows the unique elements from its source
EventList ordered by the frequency of their appearance. |
class |
RangeList<E>
This EventList shows values from a continuous range of indices from
a source EventList . |
class |
SeparatorList<E>
A list that adds separator objects before each group of elements. |
class |
SequenceList<E>
A SequenceList contains values in adjacent indices which occur at predictable intervals from each other. |
class |
SortedList<E>
An EventList that shows its source EventList in sorted order. |
class |
ThresholdList<E>
An EventList that shows a range of the elements of the source
EventList . |
class |
TransactionList<E>
A list transformation that presents traditional transaction semantics. |
class |
TreeList<E>
A hierarchial EventList that infers its structure from a flat list. |
class |
UniqueList<E>
An EventList that shows the unique elements from its source
EventList . |
Methods in ca.odell.glazedlists that return TransformedList | ||
---|---|---|
static
|
GlazedLists.readOnlyList(EventList<? extends E> source)
Wraps the source in an EventList that does not allow writing operations. |
|
static
|
GlazedLists.threadSafeList(EventList<? extends E> source)
Wraps the source in an EventList that obtains a
ReadWritLock for all
operations. |
|
static
|
GlazedLists.transformByFunction(EventList<S> source,
FunctionList.Function<S,E> function)
Returns a TransformedList that maps each element of the source list to a target
element by use of a specified FunctionList.Function . |
Uses of TransformedList in ca.odell.glazedlists.io |
---|
Subclasses of TransformedList in ca.odell.glazedlists.io | |
---|---|
class |
CachingList
An EventList that caches elements from its source EventList . |
class |
FileList
An EventList that is persisted to disk. |
class |
NetworkList<E>
An EventList that is either published to the network or subscribed from
the network. |
Uses of TransformedList in ca.odell.glazedlists.swing |
---|
Fields in ca.odell.glazedlists.swing declared as TransformedList | |
---|---|
protected TransformedList |
EventTreeModel.swingThreadSource
the proxy moves events to the Swing Event Dispatch thread |
protected TransformedList<E,E> |
EventTableModel.swingThreadSource
Deprecated. the proxy moves events to the Swing Event Dispatch thread |
protected TransformedList<T,T> |
EventTableColumnModel.swingThreadSource
the proxy moves events to the Swing Event Dispatch thread |
protected TransformedList<E,E> |
EventSelectionModel.swingThreadSource
Deprecated. the proxy moves events to the Swing Event Dispatch thread |
Methods in ca.odell.glazedlists.swing that return TransformedList | ||
---|---|---|
protected TransformedList<E,E> |
EventTableModel.createSwingThreadProxyList(EventList<E> source)
Deprecated. This method exists as a hook for subclasses that may have custom threading needs within their EventTableModels. |
|
static
|
GlazedListsSwing.swingThreadProxyList(EventList<E> source)
Wraps the source in an EventList that fires all of its update
events from the Swing event dispatch thread. |
Uses of TransformedList in ca.odell.glazedlists.swt |
---|
Methods in ca.odell.glazedlists.swt that return TransformedList | ||
---|---|---|
static
|
GlazedListsSWT.swtThreadProxyList(EventList<E> source,
org.eclipse.swt.widgets.Display display)
Wraps the source in an EventList that fires all of its update events
from the SWT user interface thread. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |