Uses of Interface
ca.odell.glazedlists.gui.TableFormat

Packages that use TableFormat
ca.odell.glazedlists   
ca.odell.glazedlists.gui   
ca.odell.glazedlists.swing   
ca.odell.glazedlists.swt   
 

Uses of TableFormat in ca.odell.glazedlists
 

Methods in ca.odell.glazedlists that return TableFormat
static
<T> TableFormat<T>
GlazedLists.tableFormat(Class<T> baseClass, String[] propertyNames, String[] columnLabels)
          Creates a TableFormat that binds JavaBean properties to table columns via Reflection.
static
<T> TableFormat<T>
GlazedLists.tableFormat(Class<T> baseClass, String[] propertyNames, String[] columnLabels, boolean[] editable)
          Creates a TableFormat that binds JavaBean properties to table columns via Reflection.
static
<T> TableFormat<T>
GlazedLists.tableFormat(String[] propertyNames, String[] columnLabels)
          Creates a TableFormat that binds JavaBean properties to table columns via Reflection.
static
<T> TableFormat<T>
GlazedLists.tableFormat(String[] propertyNames, String[] columnLabels, boolean[] editable)
          Creates a TableFormat that binds JavaBean properties to table columns via Reflection.
 

Uses of TableFormat in ca.odell.glazedlists.gui
 

Subinterfaces of TableFormat in ca.odell.glazedlists.gui
 interface AdvancedTableFormat<E>
          Allows the ability to specify column class information in addition to the standard TableFormat information.
 interface CheckableTableFormat<E>
          Specifies how to check table elements.
 interface WritableTableFormat<E>
          Specifies how to edit the elements of table.
 

Methods in ca.odell.glazedlists.gui with parameters of type TableFormat
protected  void AbstractTableComparatorChooser.setTableFormat(TableFormat<? super E> tableFormat)
          Adjusts the TableFormat this comparator chooser uses when selecting comparators.
 

Constructors in ca.odell.glazedlists.gui with parameters of type TableFormat
AbstractTableComparatorChooser(SortedList<E> sortedList, TableFormat<? super E> tableFormat)
          Create a AbstractTableComparatorChooser that sorts the specified SortedList over the specified columns.
 

Uses of TableFormat in ca.odell.glazedlists.swing
 

Methods in ca.odell.glazedlists.swing that return TableFormat
 TableFormat<? super E> JXTableSupport.getTableFormat()
           
 TableFormat<? super E> DefaultEventTableModel.getTableFormat()
          Gets the TableFormat used by this table model.
 TableFormat<? super E> AdvancedTableModel.getTableFormat()
          Gets the TableFormat used by this table model.
 

Methods in ca.odell.glazedlists.swing with parameters of type TableFormat
static
<E> AutoCompleteSupport.AutoCompleteCellEditor<E>
AutoCompleteSupport.createTableCellEditor(Comparator uniqueComparator, TableFormat<E> tableFormat, EventList<E> tableData, int columnIndex)
          This factory method creates and returns a AutoCompleteSupport.AutoCompleteCellEditor which adapts an autocompleting JComboBox for use as a Table Cell Editor.
static
<E> AutoCompleteSupport.AutoCompleteCellEditor<E>
AutoCompleteSupport.createTableCellEditor(TableFormat<E> tableFormat, EventList<E> tableData, int columnIndex)
          This factory method creates and returns a AutoCompleteSupport.AutoCompleteCellEditor which adapts an autocompleting JComboBox for use as a Table Cell Editor.
static
<E> AdvancedTableModel<E>
GlazedListsSwing.eventTableModel(EventList<E> source, TableFormat<? super E> tableFormat)
          Creates a new table model that extracts column data from the given source using the the given tableFormat.
static
<E> AdvancedTableModel<E>
GlazedListsSwing.eventTableModelWithThreadProxyList(EventList<E> source, TableFormat<? super E> tableFormat)
          Creates a new table model that extracts column data from the given source using the the given tableFormat.
static
<E> TableComparatorChooser<E>
TableComparatorChooser.install(JTable table, SortedList<E> sortedList, Object strategy, TableFormat<? super E> tableFormat)
          Installs a new TableComparatorChooser that responds to clicks on the header of the specified table and uses them to sort the specified sortedList by delegating to the given strategy If at any time the table should no longer sort, the behaviour can be removed calling TableComparatorChooser.dispose() on the object returned by this method.
static
<E> JXTableSupport<E>
JXTableSupport.install(JXTable table, EventList<E> eventList, TableFormat<? super E> tableFormat, SortedList<E> sortedList, Object sortingStrategy)
          Installs the Glazed Lists integration on the given table.
 void DefaultEventTableModel.setTableFormat(TableFormat<? super E> tableFormat)
          Sets the TableFormat that will extract column data from each element.
 void AdvancedTableModel.setTableFormat(TableFormat<? super E> tableFormat)
          Sets the TableFormat that will extract column data from each element.
 

Constructors in ca.odell.glazedlists.swing with parameters of type TableFormat
DefaultEventTableModel(EventList<E> source, boolean disposeSource, TableFormat<? super E> tableFormat)
          Creates a new table model that extracts column data from the given source using the the given tableFormat.
DefaultEventTableModel(EventList<E> source, TableFormat<? super E> tableFormat)
          Creates a new table model that extracts column data from the given source using the the given tableFormat.
EventJXTableModel(EventList<E> source, TableFormat<? super E> tableFormat)
          
EventTableModel(EventList<E> source, TableFormat<? super E> tableFormat)
          Deprecated. Use DefaultEventTableModel and GlazedListsSwing.swingThreadProxyList(EventList) instead
TableComparatorChooser(JTable table, SortedList<E> sortedList, Object strategy, TableFormat<? super E> tableFormat)
          Creates and installs a TableComparatorChooser.
 

Uses of TableFormat in ca.odell.glazedlists.swt
 

Subinterfaces of TableFormat in ca.odell.glazedlists.swt
 interface KTableFormat
          Specify how to split row objects into cells for use with KTable.
 

Classes in ca.odell.glazedlists.swt that implement TableFormat
 class AbstractKTableFormat
          Make implementing KTableFormat easier.
 class TableFormatKTableFormat
          Adapt TableFormat to KTableFormat.
 

Methods in ca.odell.glazedlists.swt that return TableFormat
 TableFormat<? super E> DefaultEventTableViewer.getTableFormat()
          Gets the TableFormat.
 

Methods in ca.odell.glazedlists.swt with parameters of type TableFormat
static DefaultEventKTableModel GlazedListsKTable.eventKTableModel(de.kupzog.ktable.KTable table, EventList source, TableFormat tableFormat)
          Create a new DefaultEventKTableModel that uses elements from the specified EventList as rows, and the specified TableFormat to divide row objects across columns.
static DefaultEventKTableModel GlazedListsKTable.eventKTableModelWithThreadProxyList(de.kupzog.ktable.KTable table, EventList source, TableFormat tableFormat)
          Create a new DefaultEventKTableModel that uses elements from the specified EventList as rows, and the specified TableFormat to divide row objects across columns.
static
<E> DefaultEventTableViewer<E>
GlazedListsSWT.eventTableViewer(EventList<E> source, org.eclipse.swt.widgets.Table table, TableFormat<? super E> tableFormat)
          Creates a new viewer for the given Table that updates the table contents in response to changes on the specified EventList.
static
<E> DefaultEventTableViewer<E>
GlazedListsSWT.eventTableViewer(EventList<E> source, org.eclipse.swt.widgets.Table table, TableFormat<? super E> tableFormat, TableItemConfigurer<? super E> tableItemConfigurer)
          Creates a new viewer for the given Table that updates the table contents in response to changes on the specified EventList.
static
<E> DefaultEventTableViewer<E>
GlazedListsSWT.eventTableViewerWithThreadProxyList(EventList<E> source, org.eclipse.swt.widgets.Table table, TableFormat<? super E> tableFormat)
          Creates a new viewer for the given Table that updates the table contents in response to changes on the specified EventList.
static
<E> DefaultEventTableViewer<E>
GlazedListsSWT.eventTableViewerWithThreadProxyList(EventList<E> source, org.eclipse.swt.widgets.Table table, TableFormat<? super E> tableFormat, TableItemConfigurer<? super E> tableItemConfigurer)
          Creates a new viewer for the given Table that updates the table contents in response to changes on the specified EventList.
 void DefaultEventTableViewer.setTableFormat(TableFormat<? super E> tableFormat)
          Sets this Table to be formatted by a different TableFormat.
 

Constructors in ca.odell.glazedlists.swt with parameters of type TableFormat
DefaultEventKTableModel(de.kupzog.ktable.KTable table, EventList source, TableFormat tableFormat)
          Create a new DefaultEventKTableModel that uses elements from the specified EventList as rows, and the specified TableFormat to divide row objects across columns.
DefaultEventKTableModel(de.kupzog.ktable.KTable table, EventList source, TableFormat tableFormat, boolean disposeSource)
          Create a new DefaultEventKTableModel that uses elements from the specified EventList as rows, and the specified TableFormat to divide row objects across columns.
DefaultEventTableViewer(EventList<E> source, org.eclipse.swt.widgets.Table table, TableFormat<? super E> tableFormat)
          Creates a new viewer for the given Table that updates the table contents in response to changes on the specified EventList.
DefaultEventTableViewer(EventList<E> source, org.eclipse.swt.widgets.Table table, TableFormat<? super E> tableFormat, TableItemConfigurer<? super E> tableItemConfigurer)
          Creates a new viewer for the given Table that updates the table contents in response to changes on the specified EventList.
DefaultEventTableViewer(EventList<E> source, org.eclipse.swt.widgets.Table table, TableFormat<? super E> tableFormat, TableItemConfigurer<? super E> tableItemConfigurer, boolean disposeSource)
          Creates a new viewer for the given Table that updates the table contents in response to changes on the specified EventList.
EventKTableModel(de.kupzog.ktable.KTable table, EventList source, TableFormat tableFormat)
          Deprecated. Create a new EventKTableModel that uses elements from the specified EventList as rows, and the specified TableFormat to divide row objects across columns.
EventTableViewer(EventList<E> source, org.eclipse.swt.widgets.Table table, TableFormat<? super E> tableFormat)
          Deprecated. Creates a new viewer for the given Table that updates the table contents in response to changes on the specified EventList.
EventTableViewer(EventList<E> source, org.eclipse.swt.widgets.Table table, TableFormat<? super E> tableFormat, TableItemConfigurer<? super E> tableItemConfigurer)
          Deprecated. Creates a new viewer for the given Table that updates the table contents in response to changes on the specified EventList.
TableFormatKTableFormat(TableFormat tableFormat)
          Adapt the specified TableFormat to be used in a KTable.
 



Glazed Lists, Copyright © 2003 publicobject.com, O'Dell Engineering.
Documentation build by hbrands at 2015-02-16 14:02