Deprecated API


Contents
Deprecated Classes
ca.odell.glazedlists.swing.EventComboBoxModel
          Use DefaultEventComboBoxModel instead. This class will be removed in the GL 2.0 release. The wrapping of the source list with an EDT safe list has been determined to be undesirable (it is better for the user to provide their own EDT safe list). 
ca.odell.glazedlists.swt.EventComboViewer
          Use DefaultEventComboViewer instead. This class will be removed in the GL 2.0 release. The wrapping of the source list with an SWT-EDT safe list has been determined to be undesirable (it is better for the user to provide their own SWT-EDT safe list). 
ca.odell.glazedlists.swt.EventKTableModel
          Use DefaultEventKTableModel instead. This class will be removed in the GL 2.0 release. The wrapping of the source list with an SWT-EDT safe list has been determined to be undesirable (it is better for the user to provide their own SWT-EDT safe list). 
ca.odell.glazedlists.swing.EventListModel
          Use DefaultEventListModel instead. This class will be removed in the GL 2.0 release. The wrapping of the source list with an EDT safe list has been determined to be undesirable (it is better for the user to provide their own EDT safe list). 
ca.odell.glazedlists.swt.EventListViewer
          Use DefaultEventListViewer instead. This class will be removed in the GL 2.0 release. The wrapping of the source list with an SWT-EDT safe list has been determined to be undesirable (it is better for the user to provide their own SWT-EDT safe list). 
ca.odell.glazedlists.swing.EventSelectionModel
          Use DefaultEventSelectionModel instead. This class will be removed in the GL 2.0 release. The wrapping of the source list with an EDT safe list has been determined to be undesirable (it is better for the user to provide their own EDT safe list). 
ca.odell.glazedlists.swing.EventTableModel
          Use DefaultEventTableModel instead. This class will be removed in the GL 2.0 release. The wrapping of the source list with an EDT safe list has been determined to be undesirable (it is better for the user to provide their own EDT safe list). 
ca.odell.glazedlists.swt.EventTableViewer
          Use DefaultEventTableViewer instead. This class will be removed in the GL 2.0 release. The wrapping of the source list with an SWT-EDT safe list has been determined to be undesirable (it is better for the user to provide their own SWT-EDT safe list). 
 

Deprecated Methods
ca.odell.glazedlists.event.ListEventAssembler.addChange(int, int)
          replaced with ListEventAssembler.elementInserted(int, E), ListEventAssembler.elementUpdated(int, E, E) and ListEventAssembler.elementDeleted(int, E). 
ca.odell.glazedlists.event.ListEventAssembler.addChange(int, int, int)
          replaced with ListEventAssembler.elementInserted(int, E), ListEventAssembler.elementUpdated(int, E, E) and ListEventAssembler.elementDeleted(int, E). 
ca.odell.glazedlists.event.ListEventAssembler.addDelete(int)
          replaced with ListEventAssembler.elementDeleted(int, E). 
ca.odell.glazedlists.event.ListEventAssembler.addDelete(int, int)
          replaced with ListEventAssembler.elementDeleted(int, E). 
ca.odell.glazedlists.event.ListEventPublisher.addDependency(EventList, ListEventListener)
          replaced with ListEventPublisher.setRelatedSubject(java.lang.Object, java.lang.Object), which has different semantics and takes different arguments, but accomplishes the same goal 
ca.odell.glazedlists.event.ListEventAssembler.addInsert(int)
          replaced with ListEventAssembler.elementInserted(int, E). 
ca.odell.glazedlists.event.ListEventAssembler.addInsert(int, int)
          replaced with ListEventAssembler.elementInserted(int, E). 
ca.odell.glazedlists.event.ListEventAssembler.addUpdate(int)
          replaced with ListEventAssembler.elementUpdated(int, E, E). 
ca.odell.glazedlists.event.ListEventAssembler.addUpdate(int, int)
          replaced with ListEventAssembler.elementUpdated(int, E, E). 
ca.odell.glazedlists.GlazedLists.beanPropertyMatcher(Class, String, Object)
          as of 3/3/2006 - this method has been replaced by Matchers.beanPropertyMatcher(java.lang.Class, java.lang.String, java.lang.Object). Matchers is now the permanent factory class which creates all basic Matcher implementations. 
ca.odell.glazedlists.event.ListEventAssembler.elementUpdated(int, E)
          replaced with ListEventAssembler.elementUpdated(int, Object, Object). 
ca.odell.glazedlists.event.ListEvent.getBlocksRemaining()
          this method depends on a particular implementation of how list events are stored internally, and this implementation has since changed. 
ca.odell.glazedlists.swing.EventSelectionModel.getEventList()
          As of 2005/02/18, the naming of this method became ambiguous. Please use EventSelectionModel.getSelected(). 
ca.odell.glazedlists.swing.EventSelectionModel.getListSelectionModel()
          As of 2004/11/26, the EventSelectionModel implements ListSelectionModel directly. 
ca.odell.glazedlists.event.ListEvent.getNewValue()
          this is a developer preview API that is not yet fit for human consumption. Hopefully the full implementation is complete for Glazed Lists 2.0. 
ca.odell.glazedlists.event.ListEvent.getOldValue()
          this is a developer preview API that is not yet fit for human consumption. Hopefully the full implementation is complete for Glazed Lists 2.0. 
ca.odell.glazedlists.SortedList.indexOfSimulated(Object)
          Deprecated as of 12/11/2005. Replaced with SortedList.sortIndex(Object) which has cleaner semantics. 
ca.odell.glazedlists.event.ListEventPublisher.removeDependency(EventList, ListEventListener)
          replaced with ListEventPublisher.clearRelatedSubject(java.lang.Object), which has different semantics and takes different arguments, but accomplishes the same goal 
ca.odell.glazedlists.RangeList.setRange(int, int)
          2/15/2006 use RangeList.setHeadRange(int, int) instead. The introduction of RangeList.setMiddleRange(int, int) caused us to want a consistent naming scheme for all set*Range methods. 
 

Deprecated Constructors
ca.odell.glazedlists.BasicEventList(List)
          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). 
ca.odell.glazedlists.CompositeList(ReadWriteLock)
          replaced by CompositeList.CompositeList(ListEventPublisher, ReadWriteLock), because prebuilt member lists should share lock and publisher with the CompositeList. 
ca.odell.glazedlists.swing.EventTableModel(EventList, String[], String[], boolean[])
          Use GlazedListsSwing#createEventTableModel(EventList, String[], String[], boolean[]) and GlazedListsSwing.swingThreadProxyList(EventList) instead 
ca.odell.glazedlists.swing.EventTableModel(EventList, TableFormat)
          Use DefaultEventTableModel and GlazedListsSwing.swingThreadProxyList(EventList) instead 
ca.odell.glazedlists.swt.EventTableViewer(EventList, Table, String[], String[])
          use a combination of GlazedLists.tableFormat(String[], String[]) and EventTableViewer.EventTableViewer(EventList, Table, TableFormat) instead 
ca.odell.glazedlists.swt.TableComparatorChooser(DefaultEventTableViewer, SortedList, boolean)
          replaced with TableComparatorChooser.install(ca.odell.glazedlists.swt.DefaultEventTableViewer, ca.odell.glazedlists.SortedList, boolean), which is functionally identical but uses a more fitting name to convey the action that is performed. 
ca.odell.glazedlists.swing.TableComparatorChooser(JTable, SortedList, boolean)
          replaced with TableComparatorChooser.install(javax.swing.JTable, ca.odell.glazedlists.SortedList, java.lang.Object), which is functionally identical but uses a more fitting name to convey the action that is performed and fixes an API flaw by explicitly requiring the TableFormat. 
ca.odell.glazedlists.swing.TableComparatorChooser(JTable, SortedList, Object)
          9/25/06 replaced with TableComparatorChooser.install(javax.swing.JTable, ca.odell.glazedlists.SortedList, java.lang.Object), which is functionally identical but uses a more fitting name to convey the action that is performed and fixes an API flaw by explicitly requiring the TableFormat. 
ca.odell.glazedlists.TreeList(EventList, TreeList.Format)
          use the constructor that takes an TreeList.ExpansionModel 
 



Glazed Lists, Copyright © 2003 publicobject.com, O'Dell Engineering.
Documentation build by hbrands at 2013-02-12 20:58