Uses of Interface
ca.odell.glazedlists.event.ListEventPublisher
-
Packages that use ListEventPublisher Package Description ca.odell.glazedlists ca.odell.glazedlists.event -
-
Uses of ListEventPublisher in ca.odell.glazedlists
Fields in ca.odell.glazedlists declared as ListEventPublisher Modifier and Type Field Description protected ListEventPublisher
AbstractEventList. publisher
the publisher manages the distribution of changesMethods in ca.odell.glazedlists that return ListEventPublisher Modifier and Type Method Description ListEventPublisher
AbstractEventList. getPublisher()
Get the publisher used to distributeListEvent
s.ListEventPublisher
DebugList. getPublisher()
Get the publisher used to distributeListEvent
s.ListEventPublisher
EventList. getPublisher()
Get the publisher used to distributeListEvent
s.Methods in ca.odell.glazedlists with parameters of type ListEventPublisher Modifier and Type Method Description static <E> EventList<E>
GlazedLists. eventList(ListEventPublisher publisher, ReadWriteLock lock, java.util.Collection<? extends E> contents)
Creates a newEventList
with the givenListEventPublisher
andReadWriteLock
which contains the contents of the specifiedCollection
.static <E> EventList<E>
GlazedLists. eventListOf(ListEventPublisher publisher, ReadWriteLock lock, E... contents)
Creates a newEventList
with the givenListEventPublisher
andReadWriteLock
which contains the given elements.Constructors in ca.odell.glazedlists with parameters of type ListEventPublisher Constructor Description AbstractEventList(ListEventPublisher publisher)
Creates anAbstractEventList
that sends events using the specifiedListEventPublisher
.BasicEventList(int initialCapacity, ListEventPublisher publisher, ReadWriteLock readWriteLock)
Creates aBasicEventList
using the specified initial capacity,ListEventPublisher
andReadWriteLock
.BasicEventList(ListEventPublisher publisher, ReadWriteLock readWriteLock)
CompositeList(ListEventPublisher publisher, ReadWriteLock lock)
PluggableList(ListEventPublisher publisher, ReadWriteLock lock)
Constructs a PluggableList which uses the givenpublisher
andlock
. -
Uses of ListEventPublisher in ca.odell.glazedlists.event
Methods in ca.odell.glazedlists.event that return ListEventPublisher Modifier and Type Method Description static ListEventPublisher
ListEventAssembler. createListEventPublisher()
Constructors in ca.odell.glazedlists.event with parameters of type ListEventPublisher Constructor Description ListEventAssembler(EventList<E> sourceList, ListEventPublisher publisher)
Creates a new ListEventAssembler that tracks changes for the specified list.
-