Uses of Class
semorg.gui.util.TableColumnProperty

Packages that use TableColumnProperty
semorg.gui.util This package provides utilities for the several window classes (graphics user interface layer). 
 

Uses of TableColumnProperty in semorg.gui.util
 

Fields in semorg.gui.util declared as TableColumnProperty
private  TableColumnProperty[] ConfigureListWidget.columnProperties
          Array of table columns with unchanged order.
 

Fields in semorg.gui.util with type parameters of type TableColumnProperty
private  Vector<TableColumnProperty> ConfigureListWidget.TableColumnPropertyContentProvider.input
          The input
 

Methods in semorg.gui.util that return TableColumnProperty
 TableColumnProperty[] ConfigureListDlg.getColumnProperties()
           
 TableColumnProperty[] ConfigureListWidget.getColumns()
           
 

Methods in semorg.gui.util that return types with arguments of type TableColumnProperty
 Vector<TableColumnProperty> ConfigureListWidget.TableColumnPropertyContentProvider.getInput()
           
 

Methods in semorg.gui.util with parameters of type TableColumnProperty
 void ConfigureListWidget.TableColumnPropertyContentProvider.addColumn(TableColumnProperty column)
          Adds column to the input of this content provider.
 void ConfigureListWidget.TableColumnPropertyContentProvider.moveDown(TableColumnProperty selectedColumn)
          Moves the given column down by one position in the ConfigureListWidget.TableColumnPropertyContentProvider.input of this content provider, i.e. the index gets incremented by one.
 void ConfigureListWidget.TableColumnPropertyContentProvider.moveUp(TableColumnProperty selectedColumn)
          Moves the given column up by one position in the ConfigureListWidget.TableColumnPropertyContentProvider.input of this content provider, i.e. the index gets decremented by one.
 void ConfigureListWidget.TableColumnPropertyContentProvider.removeColumn(TableColumnProperty column)
          Removes a column from the input of this content provider.
private  void ConfigureListWidget.setListViewerInputs(TableColumnProperty[] columns, int[] columnOrder)
          Fills the both lists ConfigureListWidget.selectedColumns and ConfigureListWidget.deselectedColumns with content using the ConfigureListWidget.selectedColumnsViewer and the ConfigureListWidget.deselectedColumnsViewer.
 

Method parameters in semorg.gui.util with type arguments of type TableColumnProperty
 void ConfigureListWidget.TableColumnPropertyContentProvider.addAllColumns(Vector<TableColumnProperty> columns)
          Adds all TableColumnProperty instance in the given vector to the input of this content provider.
 void ConfigureListWidget.TableColumnPropertyContentProvider.removeAllColumns(Vector<TableColumnProperty> columns)
          Removes all TableColumnProperty instances in the given vector from the input of this content provider.