Uses of Class
org.jdesktop.swingx.table.TableColumnExt

Packages that use TableColumnExt
org.jdesktop.swingx Contains extensions to the Swing GUI toolkit, including new and enhanced components that provide functionality commonly required by rich, data-centric client applications. 
org.jdesktop.swingx.table Contains API required by the extended JTable component, JXTable. 
 

Uses of TableColumnExt in org.jdesktop.swingx
 

Methods in org.jdesktop.swingx that return TableColumnExt
 TableColumnExt JXTable.getColumnExt(int viewColumnIndex)
          Returns the TableColumnExt at view position columnIndex.
 TableColumnExt JXTable.getColumnExt(java.lang.Object identifier)
          Returns the first TableColumnExt with the given identifier.
 

Uses of TableColumnExt in org.jdesktop.swingx.table
 

Methods in org.jdesktop.swingx.table that return TableColumnExt
 TableColumnExt ColumnFactory.createAndConfigureTableColumn(javax.swing.table.TableModel model, int modelIndex)
          Creates and configures a TableColumnExt.
 TableColumnExt ColumnFactory.createTableColumn(int modelIndex)
          Creates a table column with modelIndex.
 TableColumnExt TableColumnModelExt.getColumnExt(int columnIndex)
          Returns the TableColumnExt at view position columnIndex.
 TableColumnExt DefaultTableColumnModelExt.getColumnExt(int columnIndex)
          Returns the TableColumnExt at view position columnIndex.
 TableColumnExt TableColumnModelExt.getColumnExt(java.lang.Object identifier)
          Returns the first TableColumnExt with the given identifier.
 TableColumnExt DefaultTableColumnModelExt.getColumnExt(java.lang.Object identifier)
          Returns the first TableColumnExt with the given identifier.
 

Methods in org.jdesktop.swingx.table with parameters of type TableColumnExt
 void ColumnFactory.configureColumnWidths(JXTable table, TableColumnExt columnExt)
          Configures column initial widths properties from JXTable.
 void ColumnFactory.configureTableColumn(javax.swing.table.TableModel model, TableColumnExt columnExt)
          Configure column properties from TableModel.
 void ColumnFactory.packColumn(JXTable table, TableColumnExt columnExt, int margin, int max)
          Configures the column's preferredWidth to fit the content.
 

Constructors in org.jdesktop.swingx.table with parameters of type TableColumnExt
TableColumnExt(TableColumnExt columnExt)
          Instantiates a new table view column with all properties copied from the given original.