A B C D E F G H I L M N O P R S T U W

A

AbstractEventList<E> - Class in ca.odell.glazedlists
A convenience class that implements common functionality for all EventLists.
AbstractEventList(ListEventPublisher) - Constructor for class ca.odell.glazedlists.AbstractEventList
Creates an AbstractEventList that sends events using the specified ListEventPublisher.
AbstractEventList() - Constructor for class ca.odell.glazedlists.AbstractEventList
Create an AbstractEventList that sends events with the default ListEventPublisher.
AbstractFilterList - Class in ca.odell.glazedlists.migrationkit
Deprecated. This class uses inheritance when composition is preferrable. By replacing the overriding method AbstractFilterList.filterMatches(Object) with a Matcher or MatcherEditor, logic can be reused. That approach is far more flexible and powerful than the static filtering required by AbstractFilterList.
AbstractFilterList(EventList) - Constructor for class ca.odell.glazedlists.migrationkit.AbstractFilterList
Deprecated. Creates a AbstractFilterList that includes a subset of the specified source EventList.
AbstractMatcherEditor<E> - Class in ca.odell.glazedlists.matchers
Basic building block for MatcherEditor implementations that handles the details of dealing with listenerList.
AbstractMatcherEditor() - Constructor for class ca.odell.glazedlists.matchers.AbstractMatcherEditor
 
AbstractTableComparatorChooser<E> - Class in ca.odell.glazedlists.gui
A TableComparatorChooser is a tool that allows the user to sort a table widget by clicking on the table's headers.
AbstractTableComparatorChooser(SortedList<E>, TableFormat<E>) - Constructor for class ca.odell.glazedlists.gui.AbstractTableComparatorChooser
Create a AbstractTableComparatorChooser that sorts the specified SortedList over the specified columns.
add(E) - Method in class ca.odell.glazedlists.AbstractEventList
Appends the specified element to the end of this list (optional operation).
add(int, E) - Method in class ca.odell.glazedlists.AbstractEventList
Inserts the specified element at the specified position in this list (optional operation).
add(int, E) - Method in class ca.odell.glazedlists.BasicEventList
Inserts the specified element at the specified position in this list (optional operation).
add(E) - Method in class ca.odell.glazedlists.BasicEventList
Appends the specified element to the end of this list (optional operation).
add(int, E) - Method in class ca.odell.glazedlists.FunctionList
Inserts the specified element at the specified position in this list (optional operation). Shifts the element currently at that position (if any) and any subsequent elements to the right (adds one to their indices).
add(int, List<E>) - Method in class ca.odell.glazedlists.GroupingList
This version of add will distribute all elements within the given value List into groups.
add(int, E) - Method in class ca.odell.glazedlists.TransformedList
Inserts the specified element at the specified position in this list (optional operation).
addAll(Collection<? extends E>) - Method in class ca.odell.glazedlists.AbstractEventList
Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator (optional operation).
addAll(int, Collection<? extends E>) - Method in class ca.odell.glazedlists.AbstractEventList
Inserts all of the elements in the specified collection into this list at the specified position (optional operation).
addAll(Collection<? extends E>) - Method in class ca.odell.glazedlists.BasicEventList
Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator (optional operation).
addAll(int, Collection<? extends E>) - Method in class ca.odell.glazedlists.BasicEventList
Inserts all of the elements in the specified collection into this list at the specified position (optional operation).
addAll(int, Collection<? extends E>) - Method in class ca.odell.glazedlists.TransformedList
Inserts all of the elements in the specified collection into this list at the specified position (optional operation).
addChange(int, int, int) - Method in class ca.odell.glazedlists.event.ListEventAssembler
Adds a block of changes to the set of list changes.
addChange(int, int) - Method in class ca.odell.glazedlists.event.ListEventAssembler
Convenience method for appending a single change of the specified type.
addDelete(int) - Method in class ca.odell.glazedlists.event.ListEventAssembler
Convenience method for appending a single delete.
addDelete(int, int) - Method in class ca.odell.glazedlists.event.ListEventAssembler
Convenience method for appending a range of deletes.
addDependency(EventList, ListEventListener) - Method in class ca.odell.glazedlists.event.ListEventPublisher
Requires that the specified EventList be updated before the specified ListEventListener which depends on it.
addInsert(int) - Method in class ca.odell.glazedlists.event.ListEventAssembler
Convenience method for appending a single insert.
addInsert(int, int) - Method in class ca.odell.glazedlists.event.ListEventAssembler
Convenience method for appending a range of inserts.
addListDataListener(ListDataListener) - Method in class ca.odell.glazedlists.swing.EventListModel
Registers the specified ListDataListener to receive updates whenever this list changes.
addListEventListener(ListEventListener<E>) - Method in class ca.odell.glazedlists.AbstractEventList
Registers the specified listener to receive change updates for this list.
addListEventListener(ListEventListener<E>) - Method in class ca.odell.glazedlists.event.ListEventAssembler
Registers the specified listener to be notified whenever new changes are appended to this list change sequence.
addListEventListener(ListEventListener<E>) - Method in interface ca.odell.glazedlists.EventList
Registers the specified listener to receive change updates for this list.
addListSelectionListener(ListSelectionListener) - Method in class ca.odell.glazedlists.swing.EventSelectionModel
Add a listener to the list that's notified each time a change to the selection occurs.
addMatcherEditorListener(MatcherEditor.Listener<E>) - Method in class ca.odell.glazedlists.matchers.AbstractMatcherEditor
Add a listener to be notified when this editor's Matcher changes.
addMatcherEditorListener(MatcherEditor.Listener<E>) - Method in interface ca.odell.glazedlists.matchers.MatcherEditor
Add a listener to be notified when this editor's Matcher changes.
addMemberList(EventList<E>) - Method in class ca.odell.glazedlists.CompositeList
Adds the specified EventList as a source to this CompositeList.
addSelectionInterval(int, int) - Method in class ca.odell.glazedlists.swing.EventSelectionModel
Change the selection to be the set union of the current selection and the indices between index0 and index1 inclusive
addSelectionListener(ListSelection.Listener) - Method in class ca.odell.glazedlists.ListSelection
Register a Listener that will be notified when selection is changed.
addSortActionListener(ActionListener) - Method in class ca.odell.glazedlists.swing.TableComparatorChooser
Registers the specified ActionListener to receive notification whenever the JTable is sorted by this TableComparatorChooser.
addStatusListener(NetworkListStatusListener) - Method in class ca.odell.glazedlists.io.NetworkList
Registers the specified listener to receive events about the status of this NetworkList.
addUpdate(int) - Method in class ca.odell.glazedlists.event.ListEventAssembler
Convenience method for appending a single update.
addUpdate(int, int) - Method in class ca.odell.glazedlists.event.ListEventAssembler
Convenience method for appending a range of updates.
adjustRange() - Method in class ca.odell.glazedlists.RangeList
Adjust the range of the RangeList in response to changes in the source list or the desired start and end indices.
AdvancedTableFormat<E> - Interface in ca.odell.glazedlists.gui
Allows the ability to specify column class information in addition to the standard TableFormat information.
AND - Static variable in class ca.odell.glazedlists.matchers.CompositeMatcherEditor
require all matchers in the MatcherEditor to match
appendComparator(int, int, boolean) - Method in class ca.odell.glazedlists.gui.AbstractTableComparatorChooser
Append the comparator specified by the column, comparator index and reverse parameters to the end of the sequence of comparators this AbstractTableComparatorChooser is sorting the SortedList by.
AVOID_MOVING_ELEMENTS - Static variable in class ca.odell.glazedlists.SortedList
Sorting mode where elements aren't moved when their value is changed, even if this means they are no longer in perfect sorted order.

B

BasicEventList<E> - Class in ca.odell.glazedlists
An EventList that wraps any simple List, such as ArrayList or LinkedList.
BasicEventList() - Constructor for class ca.odell.glazedlists.BasicEventList
Creates a BasicEventList.
BasicEventList(ReadWriteLock) - Constructor for class ca.odell.glazedlists.BasicEventList
Creates a BasicEventList that uses the specified ReadWriteLock for concurrent access.
BasicEventList(List<E>) - Constructor for class ca.odell.glazedlists.BasicEventList
Deprecated. As of 2005/03/06, this constructor has been declared unsafe because the source list is exposed. This allows it to be modified without the required events being fired. This constructor has been replaced by the factory method GlazedLists.eventList(Collection).
beanConnector(Class<E>) - Static method in class ca.odell.glazedlists.GlazedLists
Create a new Connector for the ObservableElementList that works with JavaBeans' PropertyChangeListener.
beanConnector(Class<E>, String, String) - Static method in class ca.odell.glazedlists.GlazedLists
Create a new Connector for the ObservableElementList that works with JavaBeans' PropertyChangeListener.
beanPropertyComparator(Class<T>, String) - Static method in class ca.odell.glazedlists.GlazedLists
Creates a Comparator that uses Reflection to compare two instances of the specified Class by the given JavaBean property.
beanPropertyComparator(Class<T>, String, Comparator) - Static method in class ca.odell.glazedlists.GlazedLists
Creates a Comparator that uses Reflection to compare two instances of the specified Class by the given JavaBean property.
beanPropertyMatcher(Class<E>, String, Object) - Static method in class ca.odell.glazedlists.GlazedLists
Create a new Matcher which uses reflection to read properties with the given propertyName from instances of the given beanClass and compare them with the given value.
beanXMLByteCoder() - Static method in class ca.odell.glazedlists.io.GlazedListsIO
Creates a ByteCoder that uses XMLEncoder and XMLDecoder classes from java.beans.
beginEvent() - Method in class ca.odell.glazedlists.event.ListEventAssembler
Starts a new atomic change to this list change queue.
beginEvent(boolean) - Method in class ca.odell.glazedlists.event.ListEventAssembler
Starts a new atomic change to this list change queue.
booleanComparator() - Static method in class ca.odell.glazedlists.GlazedLists
Creates a Comparator for use with Boolean objects.
ByteCoder - Interface in ca.odell.glazedlists.io
An utility interface for converting Objects to bytes for storage or network transport.

C

ca.odell.glazedlists - package ca.odell.glazedlists
 
ca.odell.glazedlists.event - package ca.odell.glazedlists.event
 
ca.odell.glazedlists.gui - package ca.odell.glazedlists.gui
 
ca.odell.glazedlists.io - package ca.odell.glazedlists.io
 
ca.odell.glazedlists.matchers - package ca.odell.glazedlists.matchers
Implementations and classes useful for creating implementations of MatcherEditor/Matchers for use with FilterLists.
ca.odell.glazedlists.migrationkit - package ca.odell.glazedlists.migrationkit
 
ca.odell.glazedlists.migrationkit.swing - package ca.odell.glazedlists.migrationkit.swing
 
ca.odell.glazedlists.swing - package ca.odell.glazedlists.swing
 
ca.odell.glazedlists.util.concurrent - package ca.odell.glazedlists.util.concurrent
 
CachingList - Class in ca.odell.glazedlists.io
An EventList that caches elements from its source EventList.
CachingList(EventList, int) - Constructor for class ca.odell.glazedlists.io.CachingList
Creates a CachingList that caches elements from the specified source EventList.
caseInsensitiveComparator() - Static method in class ca.odell.glazedlists.GlazedLists
Creates a Comparator that compares String objects in a case-insensitive way.
chainComparators(List<Comparator<T>>) - Static method in class ca.odell.glazedlists.GlazedLists
Creates a chain of Comparators that applies the provided Comparators in the sequence specified until differences or absoulute equality.is determined.
CHANGED - Static variable in class ca.odell.glazedlists.matchers.MatcherEditor.Event
Indicates the associated Matcher is a complete change from the previous Matcher.
changedMatcher(MatcherEditor.Event<E>) - Method in interface ca.odell.glazedlists.matchers.MatcherEditor.Listener
Indicates a changes has occurred in the Matcher produced by the MatcherEditor.
changeSizeRepaintAllThreshhold - Variable in class ca.odell.glazedlists.swing.EventListModel
whenever a list change covers greater than this many rows, redraw the whole thing
CheckableTableFormat<E> - Interface in ca.odell.glazedlists.gui
Specifies how to check table elements.
childEndingIndex(int) - Method in class ca.odell.glazedlists.CollectionList
Return the index of the last child in the CollectionList for the given parent index.
childStartingIndex(int) - Method in class ca.odell.glazedlists.CollectionList
Return the index of the first child in the CollectionList for the given parent index.
clear() - Method in class ca.odell.glazedlists.AbstractEventList
Removes all of the elements from this list (optional operation).
clear() - Method in class ca.odell.glazedlists.BasicEventList
Removes all of the elements from this list (optional operation).
clear() - Method in class ca.odell.glazedlists.TransformedList
Removes all of the elements from this list (optional operation).
clearComparator() - Method in class ca.odell.glazedlists.gui.AbstractTableComparatorChooser
Clear all sorting state and set the SortedList to use its natural order.
clearSelection() - Method in class ca.odell.glazedlists.swing.EventSelectionModel
Change the selection to the empty set.
close() - Method in class ca.odell.glazedlists.io.FileList
Closes this FileList so that it consumes no disc resources.
coalesceMatcherEvents(List<MatcherEditor.Event<E>>) - Method in class ca.odell.glazedlists.matchers.ThreadedMatcherEditor
This method implements the strategy for coalescing many queued MatcherEvents into a single representative MatcherEvent.
CollectionList<S,E> - Class in ca.odell.glazedlists
A list that acts like a tree in that it contains child elements to nodes contained in another list.
CollectionList(EventList<S>, CollectionList.Model<S, E>) - Constructor for class ca.odell.glazedlists.CollectionList
Create a CollectionList that's contents will be the children of the elements in the specified source EventList.
CollectionList.Model<E,S> - Interface in ca.odell.glazedlists
Provides the logic to map a parent record (e.g., a records album) to its children (e.g., the songs on the record).
commitEvent() - Method in class ca.odell.glazedlists.event.ListEventAssembler
Commits the current atomic change to this list change queue.
comparableComparator() - Static method in class ca.odell.glazedlists.GlazedLists
Creates a Comparator that compares Comparable objects.
CompositeList<E> - Class in ca.odell.glazedlists
An EventList composed of multiple source EventLists.
CompositeList() - Constructor for class ca.odell.glazedlists.CompositeList
 
CompositeMatcherEditor<E> - Class in ca.odell.glazedlists.matchers
A MatcherEditor composed of zero or more delegate MatcherEditors.
CompositeMatcherEditor(EventList) - Constructor for class ca.odell.glazedlists.matchers.CompositeMatcherEditor
Create a CompositeMatcherEditor that creates Matchers from the union of the specified EventList of MatcherEditors.
CompositeMatcherEditor() - Constructor for class ca.odell.glazedlists.matchers.CompositeMatcherEditor
Create a CompositeMatcherEditor.
connect() - Method in class ca.odell.glazedlists.io.NetworkList
Attempts to bring this NetworkList online.
connected(NetworkList) - Method in interface ca.odell.glazedlists.io.NetworkListStatusListener
Called each time a NetworkList becomes connected.
CONSTRAINED - Static variable in class ca.odell.glazedlists.matchers.MatcherEditor.Event
Indicates the associated Matcher is a constrained version of the previous Matcher, implying it can be expected to match at most the same values matched by the previous Matcher, and possibly fewer.
contains(Object) - Method in class ca.odell.glazedlists.AbstractEventList
Returns true if this list contains the specified element.
contains(Object) - Method in class ca.odell.glazedlists.SortedList
Returns true if this list contains the specified element.
contains(Object) - Method in class ca.odell.glazedlists.ThresholdList
Returns true if this list contains the specified element.
containsAll(Collection<?>) - Method in class ca.odell.glazedlists.AbstractEventList
Returns true if this list contains all of the elements of the specified collection.
createComparatorForElement(Comparator<E>, int) - Method in class ca.odell.glazedlists.gui.AbstractTableComparatorChooser
Creates a Comparator that can compare list elements given a Comparator that can compare column values for the specified column.
createLock() - Method in interface ca.odell.glazedlists.util.concurrent.LockFactory
Create a Lock.
createMemberList() - Method in class ca.odell.glazedlists.CompositeList
Creates a new EventList that shares its ReadWriteLock with this CompositeList.
createReadWriteLock() - Method in interface ca.odell.glazedlists.util.concurrent.LockFactory
Create a ReadWriteLock.
currentMatcher - Variable in class ca.odell.glazedlists.matchers.AbstractMatcherEditor
the current Matcher in effect

D

decode(InputStream) - Method in interface ca.odell.glazedlists.io.ByteCoder
Decode the Object from the specified InputStream.
DEFAULT - Static variable in interface ca.odell.glazedlists.util.concurrent.LockFactory
The Lock factory for this JVM.
DELETE - Static variable in class ca.odell.glazedlists.event.ListEvent
different types of changes
dependenciesSatisfied(ListEventListener) - Method in class ca.odell.glazedlists.event.ListEventPublisher
Returns true if the specified ListEventListener's required dependencies have been satisfied.
dependenciesSatisfied(ListEventPublisher.DependentListener) - Method in class ca.odell.glazedlists.event.ListEventPublisher
 
deselect(int) - Method in class ca.odell.glazedlists.ListSelection
Deselects the element at the given index.
deselect(int, int) - Method in class ca.odell.glazedlists.ListSelection
Deselects all of the elements within the given range.
deselect(int[]) - Method in class ca.odell.glazedlists.ListSelection
Deselects all of the elements in the given array of indices.
deselectAll() - Method in class ca.odell.glazedlists.ListSelection
Deselects all elements.
disconnect() - Method in class ca.odell.glazedlists.io.NetworkList
Attempts to take this NetworkList offline.
disconnected(NetworkList, Exception) - Method in interface ca.odell.glazedlists.io.NetworkListStatusListener
Called each time a NetworkList's connection status changes.
dispose(A, B) - Method in interface ca.odell.glazedlists.FunctionList.AdvancedFunction
Perform any necessary resource cleanup on the given sourceValue and transformedValue as they are removed from the FunctionList.
dispose() - Method in class ca.odell.glazedlists.GroupingList
Releases the resources consumed by this TransformedList so that it may eventually be garbage collected.
dispose() - Method in class ca.odell.glazedlists.gui.AbstractTableComparatorChooser
 
dispose() - Method in class ca.odell.glazedlists.io.FileList
Releases the resources consumed by this TransformedList so that it may eventually be garbage collected.
dispose() - Method in class ca.odell.glazedlists.io.NetworkList
Releases the resources consumed by this TransformedList so that it may eventually be garbage collected.
dispose() - Method in class ca.odell.glazedlists.ListSelection
Disposes of this ListSelection freeing up it's resources for garbage collection.
dispose() - Method in class ca.odell.glazedlists.migrationkit.AbstractFilterList
Deprecated. Releases the resources consumed by this TransformedList so that it may eventually be garbage collected.
dispose() - Method in class ca.odell.glazedlists.migrationkit.swing.TextFilterList
Deprecated. Releases the resources consumed by this TransformedList so that it may eventually be garbage collected.
dispose() - Method in class ca.odell.glazedlists.ObservableElementList
Releases the resources consumed by this TransformedList so that it may eventually be garbage collected.
dispose() - Method in class ca.odell.glazedlists.PopularityList
Releases the resources consumed by this TransformedList so that it may eventually be garbage collected.
dispose() - Method in class ca.odell.glazedlists.swing.EventListModel
Releases the resources consumed by this EventListModel so that it may eventually be garbage collected.
dispose() - Method in class ca.odell.glazedlists.swing.EventSelectionModel
Releases the resources consumed by this EventSelectionModel so that it may eventually be garbage collected.
dispose() - Method in class ca.odell.glazedlists.swing.EventTableModel
Releases the resources consumed by this EventTableModel so that it may eventually be garbage collected.
dispose() - Method in class ca.odell.glazedlists.swing.TableComparatorChooser
Releases the resources consumed by this TableComparatorChooser so that it may eventually be garbage collected.
dispose() - Method in class ca.odell.glazedlists.swing.TextComponentMatcherEditor
A cleanup method which stops this MatcherEditor from listening to changes on the underlying Document, thus freeing the MatcherEditor or Document to be garbage collected.
dispose() - Method in class ca.odell.glazedlists.ThresholdList
Releases the resources consumed by this TransformedList so that it may eventually be garbage collected.
dispose() - Method in class ca.odell.glazedlists.TransformedList
Releases the resources consumed by this TransformedList so that it may eventually be garbage collected.
dispose() - Method in class ca.odell.glazedlists.UniqueList
Releases the resources consumed by this TransformedList so that it may eventually be garbage collected.

E

elementChanged(E) - Method in class ca.odell.glazedlists.ObservableElementList
Handle a listener being fired for the specified listElement.
encode(Object, OutputStream) - Method in interface ca.odell.glazedlists.io.ByteCoder
Encode the specified Object over the specified OutputStream.
EQUAL - Static variable in class ca.odell.glazedlists.matchers.ThresholdMatcherEditor
 
equals(Object) - Method in class ca.odell.glazedlists.AbstractEventList
Compares the specified object with this list for equality.
evaluate(A) - Method in interface ca.odell.glazedlists.FunctionList.Function
Transform the given sourceValue into any kind of Object.
evaluate(E) - Method in interface ca.odell.glazedlists.ThresholdList.Evaluator
Returns an integer value for an Object to be used to compare that object against a threshold.
EventComboBoxModel<E> - Class in ca.odell.glazedlists.swing
A combo box model for displaying Glazed Lists in a combo box.
EventComboBoxModel(EventList<E>) - Constructor for class ca.odell.glazedlists.swing.EventComboBoxModel
Creates a new combo box model that displays the specified source list in the combo box.
EventList<E> - Interface in ca.odell.glazedlists
An observable List.
eventList(Collection<? extends E>) - Static method in class ca.odell.glazedlists.GlazedLists
Creates a new EventList which contains the contents of the specified Collection.
EventListModel<E> - Class in ca.odell.glazedlists.swing
An EventListModel adapts a EventList to the ListModel interface making it appropriate for use with a JList.
EventListModel(EventList<E>) - Constructor for class ca.odell.glazedlists.swing.EventListModel
Creates a new widget that renders the specified list.
EventSelectionModel<E> - Class in ca.odell.glazedlists.swing
An EventSelectionModel is a class that performs two simulaneous services.
EventSelectionModel(EventList<E>) - Constructor for class ca.odell.glazedlists.swing.EventSelectionModel
Creates a new selection model that also presents a list of the selection.
EventTableModel<E> - Class in ca.odell.glazedlists.swing
A TableModel that holds an EventList.
EventTableModel(EventList<E>, TableFormat<E>) - Constructor for class ca.odell.glazedlists.swing.EventTableModel
Creates a new table that renders the specified list in the specified format.
EventTableModel(EventList<E>, String[], String[], boolean[]) - Constructor for class ca.odell.glazedlists.swing.EventTableModel
Creates a new table that renders the specified list with an automatically generated TableFormat.
executeMatcherEventQueueRunnable(Runnable) - Method in class ca.odell.glazedlists.matchers.ThreadedMatcherEditor
This method executes the given runnable on a Thread.

F

falseMatcher() - Static method in class ca.odell.glazedlists.matchers.Matchers
Get a Matcher that always returns false, therefore matching nothing..
fetch(int, boolean) - Method in class ca.odell.glazedlists.io.CachingList
Fetches a particular element.
FileList - Class in ca.odell.glazedlists.io
An EventList that is persisted to disk.
FileList(File, ByteCoder) - Constructor for class ca.odell.glazedlists.io.FileList
Create a FileList that stores its data in the specified file.
FilterList<E> - Class in ca.odell.glazedlists
An EventList that shows a subset of the elements of a source EventList.
FilterList(EventList<E>) - Constructor for class ca.odell.glazedlists.FilterList
Creates a FilterList that includes a subset of the specified source EventList.
FilterList(EventList<E>, Matcher<E>) - Constructor for class ca.odell.glazedlists.FilterList
Convenience constructor for creating a FilterList and setting its Matcher.
FilterList(EventList<E>, MatcherEditor<E>) - Constructor for class ca.odell.glazedlists.FilterList
Convenience constructor for creating a FilterList and setting its MatcherEditor.
filterMatches(Object) - Method in class ca.odell.glazedlists.migrationkit.AbstractFilterList
Deprecated. Tests if the specified item from the source EventList is matched by the current filter.
fireChanged(Matcher<E>) - Method in class ca.odell.glazedlists.matchers.AbstractMatcherEditor
Indicates that the filter has changed in an inditerminate way.
fireChangedMatcher(MatcherEditor.Event<E>) - Method in class ca.odell.glazedlists.matchers.AbstractMatcherEditor
 
fireConstrained(Matcher<E>) - Method in class ca.odell.glazedlists.matchers.AbstractMatcherEditor
Indicates that the filter has changed to be more restrictive.
fireListDataEvent(ListDataEvent) - Method in class ca.odell.glazedlists.swing.EventListModel
Notifies all ListDataListeners about one block of changes in the list.
fireMatchAll() - Method in class ca.odell.glazedlists.matchers.AbstractMatcherEditor
Indicates that the filter matches all.
fireMatchNone() - Method in class ca.odell.glazedlists.matchers.AbstractMatcherEditor
Indicates that the filter matches none.
fireRelaxed(Matcher<E>) - Method in class ca.odell.glazedlists.matchers.AbstractMatcherEditor
Indicates that the filter has changed to be less restrictive.
fixedMatcherEditor(Matcher<E>) - Static method in class ca.odell.glazedlists.GlazedLists
Get a MatcherEditor that is fixed on the specified Matcher.
forwardEvent(ListEvent<?>) - Method in class ca.odell.glazedlists.event.ListEventAssembler
Forwards the event.
FreezableList<E> - Class in ca.odell.glazedlists
An EventList that shows the current contents of its source EventList.
FreezableList(EventList<E>) - Constructor for class ca.odell.glazedlists.FreezableList
Creates a FreezableList that can freeze the view of the specified source EventList.
freeze() - Method in class ca.odell.glazedlists.FreezableList
Locks this FreezableList on the current state of the source EventList.
fromString(String) - Method in class ca.odell.glazedlists.gui.AbstractTableComparatorChooser
This class is capable of representing its own state with a String, to persist sorting state externally.
FunctionList<S,E> - Class in ca.odell.glazedlists
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.
FunctionList(EventList<S>, FunctionList.Function<S, E>) - Constructor for class ca.odell.glazedlists.FunctionList
Construct a FunctionList which stores the result of transforming each source element using the given forward FunctionList.Function.
FunctionList(EventList<S>, FunctionList.Function<S, E>, FunctionList.Function<E, S>) - Constructor for class ca.odell.glazedlists.FunctionList
Construct a FunctionList which stores the result of transforming each source element using the given forward FunctionList.Function.
FunctionList.AdvancedFunction<A,B> - Interface in ca.odell.glazedlists
An AdvancedFunction is an extension of the simple Function interface which provides more hooks in the lifecycle of the transformation of a source element.
FunctionList.Function<A,B> - Interface in ca.odell.glazedlists
A Function encapsulates the logic for transforming a list element into any kind of Object.

G

get(int) - Method in class ca.odell.glazedlists.AbstractEventList
Returns the element at the specified position in this list.
get(int) - Method in class ca.odell.glazedlists.BasicEventList
Returns the element at the specified position in this list.
get(int) - Method in class ca.odell.glazedlists.CollectionList
Returns the element at the specified position in this list.
get(int) - Method in class ca.odell.glazedlists.FreezableList
Returns the element at the specified position in this list.
get(int) - Method in class ca.odell.glazedlists.FunctionList
Returns the element at the specified position in this list.
get(int) - Method in class ca.odell.glazedlists.GroupingList
 
get(int) - Method in class ca.odell.glazedlists.io.CachingList
Returns the element at the specified position in this list.
get(int) - Method in class ca.odell.glazedlists.TransformedList
Returns the element at the specified position in this list.
getAll(int) - Method in class ca.odell.glazedlists.UniqueList
Returns a List of all original elements represented by the value at the given index within this UniqueList.
getAll(E) - Method in class ca.odell.glazedlists.UniqueList
Returns a List of all original elements represented by the given value within this UniqueList.
getAnchorSelectionIndex() - Method in class ca.odell.glazedlists.ListSelection
Return the anchor of the current selection.
getAnchorSelectionIndex() - Method in class ca.odell.glazedlists.swing.EventSelectionModel
Return the first index argument from the most recent call to setSelectionInterval(), addSelectionInterval() or removeSelectionInterval().
getBlockEndIndex() - Method in class ca.odell.glazedlists.event.ListEvent
Gets the last row of the current block of changes.
getBlocksRemaining() - Method in class ca.odell.glazedlists.event.ListEvent
Gets the number of blocks currently remaining in this atomic change.
getBlockStartIndex() - Method in class ca.odell.glazedlists.event.ListEvent
Gets the first row of the current block of changes.
getCacheHitRatio() - Method in class ca.odell.glazedlists.io.CachingList
Gets the ratio of cache hits to cache misses.
getCacheHits() - Method in class ca.odell.glazedlists.io.CachingList
Gets the total number of times that this list has fetched its result from the cache rather than from the source list.
getCacheMisses() - Method in class ca.odell.glazedlists.io.CachingList
Gets the total number of times that this list has fetched its result from the source list rather than the cache.
getChecked(E) - Method in interface ca.odell.glazedlists.gui.CheckableTableFormat
Gets whether the specified object is checked.
getChildren(E) - Method in interface ca.odell.glazedlists.CollectionList.Model
Return a list of the child nodes for a parent node.
getColumnClass(int) - Method in interface ca.odell.glazedlists.gui.AdvancedTableFormat
Returns the most specific superclass for all the cell values in the column.
getColumnClass(int) - Method in class ca.odell.glazedlists.swing.EventTableModel
Gets the class of elements in the specified column.
getColumnComparator(int) - Method in interface ca.odell.glazedlists.gui.AdvancedTableFormat
Returns the default Comparator to use for the specified column.
getColumnComparatorIndex(int) - Method in class ca.odell.glazedlists.gui.AbstractTableComparatorChooser
Gets the index comparator in use for the specified column.
getColumnCount() - Method in interface ca.odell.glazedlists.gui.TableFormat
The number of columns to display.
getColumnCount() - Method in class ca.odell.glazedlists.swing.EventTableModel
Get the column count as specified by the table format.
getColumnName(int) - Method in interface ca.odell.glazedlists.gui.TableFormat
Gets the title of the specified column.
getColumnName(int) - Method in class ca.odell.glazedlists.swing.EventTableModel
Fetch the name for the specified column.
getColumnValue(E, int) - Method in interface ca.odell.glazedlists.gui.TableFormat
Gets the value of the specified field for the specified object.
getComparator() - Method in class ca.odell.glazedlists.matchers.ThresholdMatcherEditor
See ThresholdMatcherEditor.setComparator(java.util.Comparator).
getComparator() - Method in class ca.odell.glazedlists.SortedList
Gets the Comparator that is being used to sort this list.
getComparatorsForColumn(int) - Method in class ca.odell.glazedlists.gui.AbstractTableComparatorChooser
Gets the list of comparators for the specified column.
getCount(int) - Method in class ca.odell.glazedlists.UniqueList
Returns the number of duplicates of the value found at the specified index.
getCount(E) - Method in class ca.odell.glazedlists.UniqueList
Returns the number of duplicates of the specified value.
getDeselected() - Method in class ca.odell.glazedlists.ListSelection
Provides access to an EventList that contains only deselected values.
getDeselected() - Method in class ca.odell.glazedlists.swing.EventSelectionModel
Gets an EventList that always contains the items from the source that are currently deselected.
getElementAt(int) - Method in class ca.odell.glazedlists.swing.EventListModel
Retrieves the value at the specified location from the table.
getElementAt(int) - Method in class ca.odell.glazedlists.swing.EventTableModel
Retrieves the value at the specified location from the table.
getEnabled() - Method in class ca.odell.glazedlists.swing.EventSelectionModel
Gets whether the EventSelectionModel is editable or not.
getEndIndex() - Method in class ca.odell.glazedlists.RangeList
Get the first index of the source EventList that is beyond the range of this RangeList.
getEndIndex() - Method in class ca.odell.glazedlists.ThresholdList
Get the first index of the source EventList that is beyond the range of this RangeList.
getEvaluator() - Method in class ca.odell.glazedlists.ThresholdList
A convenience method to allow access to the ThresholdList.Evaluator that was provided on construction.
getEventList() - Method in class ca.odell.glazedlists.swing.EventSelectionModel
Deprecated. As of 2005/02/18, the naming of this method became ambiguous. Please use EventSelectionModel.getSelected().
getFilterActionListener() - Method in class ca.odell.glazedlists.migrationkit.swing.TextFilterList
Deprecated. Gets an ActionListener that refilters the list when it is fired.
getFilterator() - Method in class ca.odell.glazedlists.matchers.TextMatcherEditor
Get the filterator used to extract Strings from the matched elements.
getFilterEdit() - Method in class ca.odell.glazedlists.migrationkit.swing.TextFilterList
Deprecated. Gets the JTextField used to edit the filter search String.
getFilterStrings(List<String>) - Method in interface ca.odell.glazedlists.TextFilterable
Gets this object as a list of Strings.
getFilterStrings(List<String>, E) - Method in interface ca.odell.glazedlists.TextFilterator
Gets the specified object as a list of Strings.
getForwardFunction() - Method in class ca.odell.glazedlists.FunctionList
Returns the FunctionList.Function which maps source elements to elements stored within this FunctionList.
getIndex() - Method in class ca.odell.glazedlists.event.ListEvent
Gets the current row index.
getLeadSelectionIndex() - Method in class ca.odell.glazedlists.ListSelection
Return the lead of the current selection.
getLeadSelectionIndex() - Method in class ca.odell.glazedlists.swing.EventSelectionModel
Return the second index argument from the most recent call to setSelectionInterval(), addSelectionInterval() or removeSelectionInterval().
getListEventListeners() - Method in class ca.odell.glazedlists.event.ListEventAssembler
Get all ListEventListeners observing the EventList.
getListSelectionModel() - Method in class ca.odell.glazedlists.swing.EventSelectionModel
Deprecated. As of 2004/11/26, the EventSelectionModel implements ListSelectionModel directly.
getLowerThreshold() - Method in class ca.odell.glazedlists.ThresholdList
Gets the lower threshold for this list
getMatcher() - Method in class ca.odell.glazedlists.matchers.AbstractMatcherEditor
Return the current Matcher specified by this MatcherEditor.
getMatcher() - Method in class ca.odell.glazedlists.matchers.MatcherEditor.Event
 
getMatcher() - Method in interface ca.odell.glazedlists.matchers.MatcherEditor
Return the current Matcher specified by this MatcherEditor.
getMatcher() - Method in class ca.odell.glazedlists.matchers.ThreadedMatcherEditor
Returns the current Matcher specified by the source MatcherEditor.
getMatcherEditor() - Method in class ca.odell.glazedlists.matchers.MatcherEditor.Event
Get the MatcherEditor that originated this event, or null if this event originated directly from a FilterList in a call to FilterList.setMatcher(Matcher).
getMatcherEditors() - Method in class ca.odell.glazedlists.matchers.CompositeMatcherEditor
Get the EventList of MatcherEditors that make up this CompositeMatcherEditor.
getMatchOperation() - Method in class ca.odell.glazedlists.matchers.ThresholdMatcherEditor
See ThresholdMatcherEditor.setMatchOperation(ca.odell.glazedlists.matchers.ThresholdMatcherEditor.MatchOperation).
getMaxSelectionIndex() - Method in class ca.odell.glazedlists.ListSelection
Returns the last selected index or -1 if nothing is selected.
getMaxSelectionIndex() - Method in class ca.odell.glazedlists.swing.EventSelectionModel
Gets the index of the last selected element.
getMinSelectionIndex() - Method in class ca.odell.glazedlists.ListSelection
Returns the first selected index or -1 if nothing is selected.
getMinSelectionIndex() - Method in class ca.odell.glazedlists.swing.EventSelectionModel
Gets the index of the first selected element.
getMode() - Method in class ca.odell.glazedlists.matchers.CompositeMatcherEditor
Get the match mode for this CompositeMatcherEditor.
getMode() - Method in class ca.odell.glazedlists.SortedList
Get the behaviour mode for this SortedList.
getPublisher() - Method in class ca.odell.glazedlists.AbstractEventList
Get the publisher used to distribute ListEvents.
getPublisher() - Method in interface ca.odell.glazedlists.EventList
Get the publisher used to distribute ListEvents.
getReadWriteLock() - Method in class ca.odell.glazedlists.AbstractEventList
Gets the lock required to share this list between multiple threads.
getReadWriteLock() - Method in interface ca.odell.glazedlists.EventList
Gets the lock required to share this list between multiple threads.
getReorderMap() - Method in class ca.odell.glazedlists.event.ListEvent
Gets the reorder map of this list.
getReverseFunction() - Method in class ca.odell.glazedlists.FunctionList
Returns the FunctionList.Function which maps elements stored within this FunctionList to elements within the source list or null if no such FunctionList.Function was specified at construction.
getRowCount() - Method in class ca.odell.glazedlists.swing.EventTableModel
The number of rows equals the number of entries in the source event list.
getSelected() - Method in class ca.odell.glazedlists.ListSelection
Provides access to an EventList that contains only selected values.
getSelected() - Method in class ca.odell.glazedlists.swing.EventSelectionModel
Gets an EventList that always contains the current selection.
getSelectedItem() - Method in class ca.odell.glazedlists.swing.EventComboBoxModel
Gets the currently selected item.
getSelectionMode() - Method in class ca.odell.glazedlists.ListSelection
Returns the current selection mode.
getSelectionMode() - Method in class ca.odell.glazedlists.swing.EventSelectionModel
Returns the current selection mode.
getSize() - Method in class ca.odell.glazedlists.swing.EventListModel
Gets the size of the list.
getSortingColumns() - Method in class ca.odell.glazedlists.gui.AbstractTableComparatorChooser
Get the columns that the TableComparatorChooser is sorting by.
getSortingStyle(int) - Method in class ca.odell.glazedlists.gui.AbstractTableComparatorChooser
Gets the sorting style currently applied to the specified column.
getSortingStyle(int) - Method in class ca.odell.glazedlists.swing.TableComparatorChooser
Gets the sorting style currently applied to the specified column.
getSource() - Method in class ca.odell.glazedlists.ListSelection
Get the EventList that selection is being managed for.
getSourceIndex(int) - Method in class ca.odell.glazedlists.FilterList
Gets the index in the source EventList that corresponds to the specified index.
getSourceIndex(int) - Method in class ca.odell.glazedlists.GroupingList
Gets the index in the source EventList that corresponds to the specified index.
getSourceIndex(int) - Method in class ca.odell.glazedlists.RangeList
Gets the index in the source EventList that corresponds to the specified index.
getSourceIndex(int) - Method in class ca.odell.glazedlists.SortedList
Gets the index in the source EventList that corresponds to the specified index.
getSourceIndex(int) - Method in class ca.odell.glazedlists.TransformedList
Gets the index in the source EventList that corresponds to the specified index.
getSourceList() - Method in class ca.odell.glazedlists.event.ListEvent
Gets the List where this event originally occured.
getStartIndex() - Method in class ca.odell.glazedlists.RangeList
Get the first index of the source EventList that is presented in this RangeList.
getStartIndex() - Method in class ca.odell.glazedlists.ThresholdList
Get the first index of the source EventList that is presented in this RangeList.
getTableFormat() - Method in class ca.odell.glazedlists.swing.EventTableModel
Gets the Table Format.
getThreshold() - Method in class ca.odell.glazedlists.matchers.ThresholdMatcherEditor
See ThresholdMatcherEditor.getThreshold().
getType() - Method in class ca.odell.glazedlists.event.ListEvent
Gets the type of the current change, which should be one of ListEvent.INSERT, UPDATE, or DELETE.
getType() - Method in class ca.odell.glazedlists.matchers.MatcherEditor.Event
 
getUpperThreshold() - Method in class ca.odell.glazedlists.ThresholdList
Gets the upper threshold for this list
getValueAt(int, int) - Method in class ca.odell.glazedlists.swing.EventTableModel
Retrieves the value at the specified location from the table.
getValueIsAdjusting() - Method in class ca.odell.glazedlists.swing.EventSelectionModel
Returns true if the value i