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 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.classListSelection<E>A class to provide index-based selection features.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.classTransformedList<S,E>classUniqueList<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 specifiedEventListto 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 voidAbstractEventList. addListEventListener(ListEventListener<? super E> listChangeListener)Registers the specified listener to receive change updates for this list.voidEventList. addListEventListener(ListEventListener<? super E> listChangeListener)Registers the specified listener to receive change updates for this list.voidAbstractEventList. removeListEventListener(ListEventListener<? super E> listChangeListener)Removes the specified listener from receiving change updates for this list.voidEventList. 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 allListEventListeners observing theEventList.Methods in ca.odell.glazedlists.event with parameters of type ListEventListener Modifier and Type Method Description voidListEventPublisher. 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 goalvoidListEventAssembler. addListEventListener(ListEventListener<? super E> listChangeListener)Registers the specified listener to be notified whenever new changes are appended to this list change sequence.voidListEventPublisher. removeDependency(EventList dependency, ListEventListener listener)Deprecated.replaced withListEventPublisher.clearRelatedSubject(java.lang.Object), which has different semantics and takes different arguments, but accomplishes the same goalvoidListEventAssembler. 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 classCachingListclassFileListAnEventListthat is persisted to disk.classNetworkList<E>AnEventListthat 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 classDefaultEventComboBoxModel<E>A combo box model for displaying Glazed Lists in a combo box.classDefaultEventListModel<E>A DefaultEventListModel adapts an EventList to the ListModel interface making it appropriate for use with aJList.classDefaultEventTableModel<E>ATableModelthat holds anEventList.classEventComboBoxModel<E>Deprecated.UseDefaultEventComboBoxModelinstead.classEventListModel<E>Deprecated.UseDefaultEventListModelinstead.classEventTableColumnModel<T extends javax.swing.table.TableColumn>ATableColumnModelthat holds anEventList.classEventTableModel<E>Deprecated.UseDefaultEventTableModelinstead.
-