Uses of Class
ca.odell.glazedlists.TransformedList
-
Packages that use TransformedList Package Description ca.odell.glazedlists ca.odell.glazedlists.io ca.odell.glazedlists.swing -
-
Uses of TransformedList in ca.odell.glazedlists
Subclasses of TransformedList in ca.odell.glazedlists Modifier and Type Class Description classCollectionList<S,E>A list that acts like a tree in that it contains child elements to nodes contained in another list.classCompositeList<E>classFilterList<E>classFreezableList<E>classFunctionList<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.classGroupingList<E>A grouping list contains elements which are themselves Lists.classObservableElementList<E>A list that fires update events whenever elements are modified in place.classPluggableList<E>AnEventListwhich delegates all List methods to a given sourceEventListthat may be replaced at runtime usingPluggableList.setSource(EventList).classPopularityList<E>classRangeList<E>classSeparatorList<E>A list that adds separator objects before each group of elements.classSequenceList<E>A SequenceList contains values in adjacent indices which occur at predictable intervals from each other.classSortedList<E>classThresholdList<E>classTransactionList<E>A list transformation that presents traditional transaction semantics.classUniqueList<E>Methods in ca.odell.glazedlists that return TransformedList Modifier and Type Method Description static <E> TransformedList<E,E>GlazedLists. readOnlyList(EventList<? extends E> source)Wraps the source in anEventListthat does not allow writing operations.static <E> TransformedList<E,E>GlazedLists. threadSafeList(EventList<? extends E> source)Wraps the source in anEventListthat obtains aReadWritLockfor all operations.static <S,E>
TransformedList<S,E>GlazedLists. transformByFunction(EventList<S> source, FunctionList.Function<S,E> function)Returns aTransformedListthat maps each element of the source list to a target element by use of a specifiedFunctionList.Function. -
Uses of TransformedList in ca.odell.glazedlists.io
Subclasses of TransformedList in ca.odell.glazedlists.io Modifier and Type Class Description classCachingListclassFileListAnEventListthat is persisted to disk.classNetworkList<E>AnEventListthat 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 Modifier and Type Field Description protected TransformedList<E,E>EventSelectionModel. swingThreadSourceDeprecated.the proxy moves events to the Swing Event Dispatch threadprotected TransformedList<T,T>EventTableColumnModel. swingThreadSourcethe proxy moves events to the Swing Event Dispatch threadprotected TransformedList<E,E>EventTableModel. swingThreadSourceDeprecated.the proxy moves events to the Swing Event Dispatch threadMethods in ca.odell.glazedlists.swing that return TransformedList Modifier and Type Method Description 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 <E> TransformedList<E,E>GlazedListsSwing. swingThreadProxyList(EventList<E> source)Wraps the source in anEventListthat fires all of its update events from the Swing event dispatch thread.
-