Uses of Interface
ca.odell.glazedlists.event.ListEventListener

Packages that use ListEventListener
ca.odell.glazedlists   
ca.odell.glazedlists.calculation   
ca.odell.glazedlists.event   
ca.odell.glazedlists.hibernate   
ca.odell.glazedlists.io   
ca.odell.glazedlists.jfreechart   
ca.odell.glazedlists.swing   
ca.odell.glazedlists.swt   
 

Uses of ListEventListener in ca.odell.glazedlists
 

Classes in ca.odell.glazedlists that implement ListEventListener
 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 EventLists.
 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 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 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 TransformedList<S,E>
          A convenience class for EventLists that decorate another EventList.
 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 ListEventListener
static
<E> ListEventListener<E>
GlazedLists.syncEventListToList(EventList<E> source, List<E> target)
          Synchronize the specified EventList to the specified List.
static
<E> ListEventListener<E>
GlazedLists.typeSafetyListener(EventList<E> source, Set<Class> types)
          Check list elements for type safety after they are added to an EventList using a ListEventListener.
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
 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.calculation
 

Classes in ca.odell.glazedlists.calculation that implement ListEventListener
 class AbstractEventListCalculation<N,E>
          The transition between an EventList and a single calculated value based on information from each element of the EventList happens in subclasses of this class.
 

Uses of ListEventListener in ca.odell.glazedlists.event
 

Methods in ca.odell.glazedlists.event that return types with arguments of type ListEventListener
 List<ListEventListener<E>> ListEventAssembler.getListEventListeners()
          Get all ListEventListeners observing the EventList.
 

Methods in ca.odell.glazedlists.event with parameters of type ListEventListener
 void ListEventPublisher.addDependency(EventList dependency, ListEventListener listener)
          Deprecated. replaced with ListEventPublisher.setRelatedSubject(java.lang.Object, java.lang.Object), which has different semantics and takes different arguments, but accomplishes the same goal
 void 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 with ListEventPublisher.clearRelatedSubject(java.lang.Object), which has different semantics and takes different arguments, but accomplishes the same goal
 void 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.hibernate
 

Classes in ca.odell.glazedlists.hibernate that implement ListEventListener
 class PersistentEventList
          A Hibernate persistent wrapper for an EventList.
 

Methods in ca.odell.glazedlists.hibernate with parameters of type ListEventListener
 void PersistentEventList.addListEventListener(ListEventListener listChangeListener)
          Registers the specified listener to receive change updates for this list.
 void PersistentEventList.removeListEventListener(ListEventListener listChangeListener)
          Removes the specified listener from receiving change updates for this list.
 

Uses of ListEventListener in ca.odell.glazedlists.io
 

Classes in ca.odell.glazedlists.io that implement ListEventListener
 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 ListEventListener in ca.odell.glazedlists.jfreechart
 

Classes in ca.odell.glazedlists.jfreechart that implement ListEventListener
 class CalculationCategoryDataset
          An implementation of a CategoryDataset that is backed by a List<Calculation> where each Calculation reports a numeric value.
 class EventListCategoryDataset<R extends Comparable,C extends Comparable>
          This class helps adapt an EventList to the CategoryDataset interface which is the necessary model for JFreeChart views such as Bar Charts Stacked Bar Charts Area Charts Stacked Area Charts Line Charts Waterfall Charts
 class SimpleEventCategoryDataset<R extends Comparable,C extends Comparable>
          This class helps adapt a pair of EventLists to the CategoryDataset interface which is the necessary model for JFreeChart views such as Bar Charts Stacked Bar Charts Area Charts Stacked Area Charts Line Charts Waterfall Charts
 

Uses of ListEventListener in ca.odell.glazedlists.swing
 

Classes in ca.odell.glazedlists.swing that implement ListEventListener
 class EventComboBoxModel<E>
          A combo box model for displaying Glazed Lists in a combo box.
 class EventJXTableModel<E>
          An extension of the EventTableModel for better integration with JXTable.
 class EventListModel<E>
          An EventListModel adapts an EventList to the ListModel interface making it appropriate for use with a JList.
 class EventTableColumnModel<T extends TableColumn>
          A TableColumnModel that holds an EventList.
 class EventTableModel<E>
          A TableModel that holds an EventList.
 class EventTreeModel<E>
          Adapt a TreeList for use in a JTree.
 

Uses of ListEventListener in ca.odell.glazedlists.swt
 

Classes in ca.odell.glazedlists.swt that implement ListEventListener
 class EventComboViewer<E>
          A view helper that displays an EventList in a Combo component.
 class EventKTableModel
          A KTableModel that displays an EventList.
 class EventListViewer<E>
          A view helper that displays an EventList in a List.
 class EventTableViewer<E>
          A view helper that displays an EventList in an SWT table.
 



Glazed Lists, Copyright © 2003 publicobject.com, O'Dell Engineering.
Documentation build by mockbuild at 2013-02-07 9:25