Uses of Interface
ca.odell.glazedlists.event.ListEventListener
-
Packages that use ListEventListener Package Description ca.odell.glazedlists ca.odell.glazedlists.event ca.odell.glazedlists.io ca.odell.glazedlists.swing -
-
Uses of ListEventListener in ca.odell.glazedlists
Classes in ca.odell.glazedlists that implement ListEventListener Modifier and Type Class Description 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>
class
FilterList<E>
class
FreezableList<E>
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
ListSelection<E>
A class to provide index-based selection features.class
ObservableElementList<E>
A list that fires update events whenever elements are modified in place.class
PluggableList<E>
AnEventList
which delegates all List methods to a given sourceEventList
that may be replaced at runtime usingPluggableList.setSource(EventList)
.class
PopularityList<E>
class
RangeList<E>
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>
class
ThresholdList<E>
class
TransactionList<E>
A list transformation that presents traditional transaction semantics.class
TransformedList<S,E>
class
UniqueList<E>
Methods in ca.odell.glazedlists that return ListEventListener Modifier and Type Method Description static <E> ListEventListener<E>
GlazedLists. syncEventListToList(EventList<E> source, java.util.List<E> target)
Synchronize the specifiedEventList
to the specifiedList
.static <E> ListEventListener<E>
GlazedLists. typeSafetyListener(EventList<E> source, java.util.Set<java.lang.Class> types)
Check list elements for type safety after they are added to an EventList using aListEventListener
.static <E> ListEventListener<E>
GlazedLists. weakReferenceProxy(EventList<E> source, ListEventListener<E> target)
Provides a proxy to another ListEventListener that may go out of scope without explicitly removing itself from the source list's set of listeners.Methods in ca.odell.glazedlists with parameters of type ListEventListener Modifier and Type Method Description void
AbstractEventList. addListEventListener(ListEventListener<? super E> listChangeListener)
Registers the specified listener to receive change updates for this list.void
EventList. addListEventListener(ListEventListener<? super E> listChangeListener)
Registers the specified listener to receive change updates for this list.void
AbstractEventList. removeListEventListener(ListEventListener<? super E> listChangeListener)
Removes the specified listener from receiving change updates for this list.void
EventList. removeListEventListener(ListEventListener<? super E> listChangeListener)
Removes the specified listener from receiving change updates for this list.static <E> ListEventListener<E>
GlazedLists. weakReferenceProxy(EventList<E> source, ListEventListener<E> target)
Provides a proxy to another ListEventListener that may go out of scope without explicitly removing itself from the source list's set of listeners. -
Uses of ListEventListener in ca.odell.glazedlists.event
Methods in ca.odell.glazedlists.event that return types with arguments of type ListEventListener Modifier and Type Method Description java.util.List<ListEventListener<E>>
ListEventAssembler. getListEventListeners()
Get allListEventListener
s observing theEventList
.Methods in ca.odell.glazedlists.event with parameters of type ListEventListener Modifier and Type Method Description void
ListEventPublisher. addDependency(EventList dependency, ListEventListener listener)
Deprecated.replaced withListEventPublisher.setRelatedSubject(java.lang.Object, java.lang.Object)
, which has different semantics and takes different arguments, but accomplishes the same goalvoid
ListEventAssembler. addListEventListener(ListEventListener<? super E> listChangeListener)
Registers the specified listener to be notified whenever new changes are appended to this list change sequence.void
ListEventPublisher. removeDependency(EventList dependency, ListEventListener listener)
Deprecated.replaced withListEventPublisher.clearRelatedSubject(java.lang.Object)
, which has different semantics and takes different arguments, but accomplishes the same goalvoid
ListEventAssembler. removeListEventListener(ListEventListener<? super E> listChangeListener)
Removes the specified listener from receiving notification when new changes are appended to this list change sequence. -
Uses of ListEventListener in ca.odell.glazedlists.io
Classes in ca.odell.glazedlists.io that implement ListEventListener Modifier and Type Class Description class
CachingList
class
FileList
AnEventList
that is persisted to disk.class
NetworkList<E>
AnEventList
that is either published to the network or subscribed from the network. -
Uses of ListEventListener in ca.odell.glazedlists.swing
Classes in ca.odell.glazedlists.swing that implement ListEventListener Modifier and Type Class Description class
DefaultEventComboBoxModel<E>
A combo box model for displaying Glazed Lists in a combo box.class
DefaultEventListModel<E>
A DefaultEventListModel adapts an EventList to the ListModel interface making it appropriate for use with aJList
.class
DefaultEventTableModel<E>
ATableModel
that holds anEventList
.class
EventComboBoxModel<E>
Deprecated.UseDefaultEventComboBoxModel
instead.class
EventListModel<E>
Deprecated.UseDefaultEventListModel
instead.class
EventTableColumnModel<T extends javax.swing.table.TableColumn>
ATableColumnModel
that holds anEventList
.class
EventTableModel<E>
Deprecated.UseDefaultEventTableModel
instead.
-