| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable that return IConfigRegistry | |
|---|---|
|  IConfigRegistry | NatTable.getConfigRegistry() | 
| Methods in org.eclipse.nebula.widgets.nattable with parameters of type IConfigRegistry | |
|---|---|
|  ICellPainter | NatTable.getCellPainter(int columnPosition,
               int rowPosition,
               ILayerCell cell,
               IConfigRegistry configRegistry) | 
|  void | NatTable.setConfigRegistry(IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.blink | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.blink with parameters of type IConfigRegistry | |
|---|---|
|  String[] | IBlinkingCellResolver.resolve(ILayerCell cell,
        IConfigRegistry configRegistry,
        Object oldValue,
        Object newValue) | 
|  String[] | BlinkingCellResolver.resolve(ILayerCell cell,
        IConfigRegistry configRegistry,
        Object oldValue,
        Object newValue) | 
| Constructors in org.eclipse.nebula.widgets.nattable.blink with parameters of type IConfigRegistry | |
|---|---|
| BlinkLayer(IUniqueIndexLayer dataLayer,
           IRowDataProvider<T> listDataProvider,
           IRowIdAccessor<T> rowIdAccessor,
           IColumnPropertyResolver columnPropertyResolver,
           IConfigRegistry configRegistry) | |
| BlinkLayer(IUniqueIndexLayer dataLayer,
           IRowDataProvider<T> listDataProvider,
           IRowIdAccessor<T> rowIdAccessor,
           IColumnPropertyResolver columnPropertyResolver,
           IConfigRegistry configRegistry,
           boolean triggerBlinkOnRowUpdate) | |
| BlinkLayer(IUniqueIndexLayer dataLayer,
           IRowDataProvider<T> listDataProvider,
           IRowIdAccessor<T> rowIdAccessor,
           IColumnPropertyResolver columnPropertyResolver,
           IConfigRegistry configRegistry,
           boolean triggerBlinkOnRowUpdate,
           ScheduledExecutorService scheduler) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.config | 
|---|
| Classes in org.eclipse.nebula.widgets.nattable.config that implement IConfigRegistry | |
|---|---|
|  class | ConfigRegistry | 
| Methods in org.eclipse.nebula.widgets.nattable.config with parameters of type IConfigRegistry | |
|---|---|
|  void | IConfiguration.configureRegistry(IConfigRegistry configRegistry)Configure NatTable's IConfigRegistryupon receiving this call back. | 
|  void | DefaultNatTableStyleConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
|  void | AggregateConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
|  void | AbstractUiBindingConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
|  void | AbstractLayerConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
|  boolean | IEditableRule.isEditable(ILayerCell cell,
           IConfigRegistry configRegistry) | 
|  boolean | EditableRule.isEditable(ILayerCell cell,
           IConfigRegistry configRegistry) | 
| abstract  boolean | ContextualEditableRule.isEditable(ILayerCell cell,
           IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.copy.command | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.copy.command that return IConfigRegistry | |
|---|---|
|  IConfigRegistry | CopyDataToClipboardCommand.getConfigRegistry() | 
| Constructors in org.eclipse.nebula.widgets.nattable.copy.command with parameters of type IConfigRegistry | |
|---|---|
| CopyDataToClipboardCommand(String cellDelimeter,
                           String rowDelimeter,
                           IConfigRegistry configRegistry) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.data.convert | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.data.convert with parameters of type IConfigRegistry | |
|---|---|
|  Object | IDisplayConverter.canonicalToDisplayValue(ILayerCell cell,
                        IConfigRegistry configRegistry,
                        Object canonicalValue)Convert backing data value to value to be displayed Typically converted to a String for display. | 
|  Object | DisplayConverter.canonicalToDisplayValue(ILayerCell cell,
                        IConfigRegistry configRegistry,
                        Object canonicalValue) | 
| abstract  Object | ContextualDisplayConverter.canonicalToDisplayValue(ILayerCell cell,
                        IConfigRegistry configRegistry,
                        Object canonicalValue) | 
|  Object | IDisplayConverter.displayToCanonicalValue(ILayerCell cell,
                        IConfigRegistry configRegistry,
                        Object displayValue)Convert from display value to value in the backing data structure NOTE: The type the display value is converted to must match the type in the setter of the backing bean/row object Use this method for contextual conversion. | 
|  Object | DisplayConverter.displayToCanonicalValue(ILayerCell cell,
                        IConfigRegistry configRegistry,
                        Object displayValue) | 
| abstract  Object | ContextualDisplayConverter.displayToCanonicalValue(ILayerCell cell,
                        IConfigRegistry configRegistry,
                        Object displayValue) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.data.validate | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.data.validate with parameters of type IConfigRegistry | |
|---|---|
|  boolean | IDataValidator.validate(ILayerCell cell,
         IConfigRegistry configRegistry,
         Object newValue) | 
|  boolean | DataValidator.validate(ILayerCell cell,
         IConfigRegistry configRegistry,
         Object newValue) | 
| abstract  boolean | ContextualDataValidator.validate(ILayerCell cell,
         IConfigRegistry configRegistry,
         Object newValue) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.edit | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.edit with parameters of type IConfigRegistry | |
|---|---|
| static void | EditController.editCell(ILayerCell cell,
         org.eclipse.swt.widgets.Composite parent,
         Object initialCanonicalValue,
         IConfigRegistry configRegistry)Activates the edit mode for the given cell. | 
| static void | EditController.editCells(Collection<ILayerCell> cells,
          org.eclipse.swt.widgets.Composite parent,
          Object initialCanonicalValue,
          IConfigRegistry configRegistry)This method is used to edit cells in a sub dialog. | 
| static IEditErrorHandler | EditConfigHelper.getEditErrorHandler(IConfigRegistry configRegistry,
                    ConfigAttribute<IEditErrorHandler> configAttribute,
                    List<String> configLabels)Searches for the registered IEditErrorHandlerthat should be used by this editor. | 
| static boolean | EditConfigHelper.openAdjacentEditor(IConfigRegistry configRegistry,
                   List<String> configLabels)Determines behaviour after committing the value of this editor in combination with selection movement. | 
| static boolean | EditConfigHelper.openInline(IConfigRegistry configRegistry,
           List<String> configLabels)Determines whether the editor should be opened inline or using a dialog. | 
| static boolean | EditConfigHelper.supportMultiEdit(IConfigRegistry configRegistry,
                 List<String> configLabels)Determines whether this editor supports multi edit behaviour or not. | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.edit.command | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.edit.command that return IConfigRegistry | |
|---|---|
|  IConfigRegistry | EditSelectionCommand.getConfigRegistry() | 
|  IConfigRegistry | EditCellCommand.getConfigRegistry() | 
| Methods in org.eclipse.nebula.widgets.nattable.edit.command with parameters of type IConfigRegistry | |
|---|---|
| static boolean | EditUtils.allCellsEditable(SelectionLayer selectionLayer,
                 IConfigRegistry configRegistry)For every cell that is selected it is checked whether the cell is editable or not. | 
| static ICellEditor | EditUtils.getLastSelectedCellEditor(SelectionLayer selectionLayer,
                          IConfigRegistry configRegistry) | 
| static boolean | EditUtils.isCellEditable(SelectionLayer selectionLayer,
               IConfigRegistry configRegistry,
               PositionCoordinate cellCoords)Checks if the cell at the specified coordinates is editable or not. | 
| static boolean | EditUtils.isConverterSame(SelectionLayer selectionLayer,
                IConfigRegistry configRegistry)Checks if all selected cells have the same IDisplayConverterconfigured. | 
| static boolean | EditUtils.isEditorSame(SelectionLayer selectionLayer,
             IConfigRegistry configRegistry)Checks if all selected cells have the same ICellEditorconfigured. | 
| Constructors in org.eclipse.nebula.widgets.nattable.edit.command with parameters of type IConfigRegistry | |
|---|---|
| EditCellCommand(org.eclipse.swt.widgets.Composite parent,
                IConfigRegistry configRegistry,
                ILayerCell cell) | |
| EditSelectionCommand(org.eclipse.swt.widgets.Composite parent,
                     IConfigRegistry configRegistry) | |
| EditSelectionCommand(org.eclipse.swt.widgets.Composite parent,
                     IConfigRegistry configRegistry,
                     Character character) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.edit.config | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.edit.config with parameters of type IConfigRegistry | |
|---|---|
|  void | DefaultEditConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.edit.editor | 
|---|
| Fields in org.eclipse.nebula.widgets.nattable.edit.editor declared as IConfigRegistry | |
|---|---|
| protected  IConfigRegistry | AbstractCellEditor.configRegistryThe IConfigRegistrycontaining the configuration of the
 current NatTable instance. | 
| Methods in org.eclipse.nebula.widgets.nattable.edit.editor with parameters of type IConfigRegistry | |
|---|---|
|  org.eclipse.swt.widgets.Control | ICellEditor.activateCell(org.eclipse.swt.widgets.Composite parent,
             Object originalCanonicalValue,
             EditModeEnum editMode,
             ICellEditHandler editHandler,
             ILayerCell cell,
             IConfigRegistry configRegistry)This method will be called by the framework to activate this cell editor. | 
|  org.eclipse.swt.widgets.Control | AbstractCellEditor.activateCell(org.eclipse.swt.widgets.Composite parent,
             Object originalCanonicalValue,
             EditModeEnum editMode,
             ICellEditHandler editHandler,
             ILayerCell cell,
             IConfigRegistry configRegistry) | 
|  boolean | ICellEditor.openInline(IConfigRegistry configRegistry,
           List<String> configLabels)Determines whether the editor should be opened inline or using a dialog. | 
|  boolean | AbstractCellEditor.openInline(IConfigRegistry configRegistry,
           List<String> configLabels) | 
|  boolean | ICellEditor.supportMultiEdit(IConfigRegistry configRegistry,
                 List<String> configLabels)Determines whether this editor supports multi edit behaviour or not. | 
|  boolean | AbstractCellEditor.supportMultiEdit(IConfigRegistry configRegistry,
                 List<String> configLabels) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.edit.event | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.edit.event that return IConfigRegistry | |
|---|---|
|  IConfigRegistry | InlineCellEditEvent.getConfigRegistry() | 
| Constructors in org.eclipse.nebula.widgets.nattable.edit.event with parameters of type IConfigRegistry | |
|---|---|
| InlineCellEditEvent(ILayer layer,
                    PositionCoordinate cellCoordinate,
                    org.eclipse.swt.widgets.Composite parent,
                    IConfigRegistry configRegistry,
                    Object initialValue) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.edit.gui | 
|---|
| Fields in org.eclipse.nebula.widgets.nattable.edit.gui declared as IConfigRegistry | |
|---|---|
| protected  IConfigRegistry | CellEditDialog.configRegistryThe IConfigRegistrycontaining the configuration of the current NatTable 
 instance the command should be executed for. | 
| protected  IConfigRegistry | AbstractDialogCellEditor.configRegistryThe IConfigRegistrycontaining the configuration of the
 current NatTable instance. | 
| Methods in org.eclipse.nebula.widgets.nattable.edit.gui with parameters of type IConfigRegistry | |
|---|---|
|  org.eclipse.swt.widgets.Control | AbstractDialogCellEditor.activateCell(org.eclipse.swt.widgets.Composite parent,
             Object originalCanonicalValue,
             EditModeEnum editMode,
             ICellEditHandler editHandler,
             ILayerCell cell,
             IConfigRegistry configRegistry) | 
| static ICellEditDialog | CellEditDialogFactory.createCellEditDialog(org.eclipse.swt.widgets.Shell parentShell,
                     Object originalCanonicalValue,
                     ILayerCell cell,
                     ICellEditor cellEditor,
                     IConfigRegistry configRegistry)Will determine and return the ICellEditDialogto open for editing a cell
 value. | 
|  boolean | AbstractDialogCellEditor.openInline(IConfigRegistry configRegistry,
           List<String> configLabels) | 
|  boolean | AbstractDialogCellEditor.supportMultiEdit(IConfigRegistry configRegistry,
                 List<String> configLabels) | 
| Constructors in org.eclipse.nebula.widgets.nattable.edit.gui with parameters of type IConfigRegistry | |
|---|---|
| CellEditDialog(org.eclipse.swt.widgets.Shell parentShell,
               Object originalCanonicalValue,
               ILayerCell cell,
               ICellEditor cellEditor,
               IConfigRegistry configRegistry) | |
| TickUpdateCellEditDialog(org.eclipse.swt.widgets.Shell parentShell,
                         Object originalCanonicalValue,
                         ILayerCell cell,
                         ICellEditor cellEditor,
                         IConfigRegistry configRegistry,
                         ITickUpdateHandler tickUpdateHandler) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.examples._800_Integration | 
|---|
| Constructors in org.eclipse.nebula.widgets.nattable.examples._800_Integration with parameters of type IConfigRegistry | |
|---|---|
| _804_GlazedListsEditorExample.GlazedListsEditorColumnHeaderLayerStack(IDataProvider dataProvider,
                                                                      org.eclipse.nebula.widgets.nattable.examples._800_Integration._804_GlazedListsEditorExample.GlazedListsEditorBodyLayerStack<T> bodyLayerStack,
                                                                      IColumnPropertyAccessor<T> columnPropertyAccessor,
                                                                      IConfigRegistry configRegistry) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.examples.examples._100_Layers._101_Header | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.examples.examples._100_Layers._101_Header with parameters of type IConfigRegistry | |
|---|---|
|  void | DynamicColumnHeaderHeightExample.FilterRowCustomConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.examples.examples._102_Configuration | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.examples.examples._102_Configuration with parameters of type IConfigRegistry | |
|---|---|
|  void | AutomaticRowHeightExample.ValidationMessageTableStyleConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.examples.examples._131_Filtering | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.examples.examples._131_Filtering with parameters of type IConfigRegistry | |
|---|---|
|  void | FilterRowGridExample.FilterRowCustomConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.examples.fixtures | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.examples.fixtures with parameters of type IConfigRegistry | |
|---|---|
|  void | StyledColumnHeaderConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
| Constructors in org.eclipse.nebula.widgets.nattable.examples.fixtures with parameters of type IConfigRegistry | |
|---|---|
| ColumnStructureUpdatesExampleGridLayer(ca.odell.glazedlists.EventList<T> eventList,
                                       String[] propertyNames,
                                       Map<String,String> propertyToLabelMap,
                                       IConfigRegistry configRegistry) | |
| ColumnStructureUpdatesExampleGridLayer(ca.odell.glazedlists.EventList<T> eventList,
                                       String[] propertyNames,
                                       Map<String,String> propertyToLabelMap,
                                       IConfigRegistry configRegistry,
                                       boolean useDefaultConfiguration) | |
| FilterRowExampleGridLayer(IConfigRegistry configRegistry) | |
| FullFeaturedBodyLayerStack(ca.odell.glazedlists.EventList<T> eventList,
                           IRowIdAccessor<T> rowIdAccessor,
                           String[] propertyNames,
                           IConfigRegistry configRegistry,
                           ColumnGroupModel columnGroupModel) | |
| FullFeaturedBodyLayerStack(ca.odell.glazedlists.EventList<T> eventList,
                           IRowIdAccessor<T> rowIdAccessor,
                           String[] propertyNames,
                           IConfigRegistry configRegistry,
                           ColumnGroupModel columnGroupModel,
                           boolean useDefaultConfiguration) | |
| FullFeaturedColumnHeaderLayerStack(ca.odell.glazedlists.SortedList<T> sortedList,
                                   ca.odell.glazedlists.FilterList<T> filterList,
                                   String[] propertyNames,
                                   Map<String,String> propertyToLabelMap,
                                   ILayer bodyLayer,
                                   SelectionLayer selectionLayer,
                                   ColumnGroupModel columnGroupModel,
                                   IConfigRegistry configRegistry) | |
| GlazedListsColumnHeaderLayerStack(IDataProvider dataProvider,
                                  ca.odell.glazedlists.SortedList<T> sortedList,
                                  IColumnPropertyAccessor<T> columnPropertyAccessor,
                                  IConfigRegistry configRegistry,
                                  DefaultBodyLayerStack bodyLayerStack) | |
| GlazedListsColumnHeaderLayerStack(String[] propertyNames,
                                  Map<String,String> propertyToLabelMap,
                                  ca.odell.glazedlists.SortedList<T> sortedList,
                                  IColumnPropertyAccessor<T> columnPropertyAccessor,
                                  IConfigRegistry configRegistry,
                                  DefaultBodyLayerStack bodyLayerStack) | |
| GlazedListsGridLayer(ca.odell.glazedlists.EventList<T> eventList,
                     IColumnPropertyAccessor<T> columnPropertyAccessor,
                     IDataProvider columnHeaderDataProvider,
                     IConfigRegistry configRegistry,
                     boolean useDefaultConfiguration) | |
| GlazedListsGridLayer(ca.odell.glazedlists.EventList<T> eventList,
                     String[] propertyNames,
                     Map<String,String> propertyToLabelMap,
                     IConfigRegistry configRegistry) | |
| GlazedListsGridLayer(ca.odell.glazedlists.EventList<T> eventList,
                     String[] propertyNames,
                     Map<String,String> propertyToLabelMap,
                     IConfigRegistry configRegistry,
                     boolean useDefaultConfiguration)The underlying DataLayercreated is able to handle Events raised by GlazedLists
 and fire corresponding NatTable events. | |
| StaticFilterExampleGridLayer(IConfigRegistry configRegistry) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.export | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.export with parameters of type IConfigRegistry | |
|---|---|
|  void | ILayerExporter.exportCell(OutputStream outputStream,
           Object exportDisplayValue,
           ILayerCell cell,
           IConfigRegistry configRegistry)Exports one cell. | 
| protected  void | NatExporter.exportLayer(ILayerExporter exporter,
            OutputStream outputStream,
            String layerName,
            ILayer layer,
            IConfigRegistry configRegistry)Exports the given layer to the outputStream using the provided exporter. | 
|  void | NatExporter.exportSingleLayer(ILayer layer,
                  IConfigRegistry configRegistry)Exports a single ILayer using the ILayerExporter registered in the ConfigRegistry. | 
|  Object | IExportFormatter.formatForExport(ILayerCell cell,
                IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.export.command | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.export.command that return IConfigRegistry | |
|---|---|
|  IConfigRegistry | ExportCommand.getConfigRegistry() | 
| Constructors in org.eclipse.nebula.widgets.nattable.export.command with parameters of type IConfigRegistry | |
|---|---|
| ExportCommand(IConfigRegistry configRegistry,
              org.eclipse.swt.widgets.Shell shell) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.export.config | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.export.config with parameters of type IConfigRegistry | |
|---|---|
|  void | DefaultExportBindings.configureRegistry(IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.export.excel | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.export.excel with parameters of type IConfigRegistry | |
|---|---|
|  void | ExcelExporter.exportCell(OutputStream outputStream,
           Object exportDisplayValue,
           ILayerCell cell,
           IConfigRegistry configRegistry) | 
|  Object | DefaultExportFormatter.formatForExport(ILayerCell cell,
                IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.extension.builder.configuration | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.extension.builder.configuration with parameters of type IConfigRegistry | |
|---|---|
| protected  void | AlternateRowStyleConfiguration.configureEvenRowStyle(IConfigRegistry configRegistry) | 
| protected  void | SelectionStyleConfiguration.configureHeaderFullySelectedStyle(IConfigRegistry configRegistry) | 
| protected  void | AlternateRowStyleConfiguration.configureOddRowStyle(IConfigRegistry configRegistry) | 
|  void | ColumnHeaderConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
|  void | ColumnGroupConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
|  void | AlternateRowStyleConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.extension.builder.layers | 
|---|
| Constructors in org.eclipse.nebula.widgets.nattable.extension.builder.layers with parameters of type IConfigRegistry | |
|---|---|
| ColumnHeaderLayerStack(ca.odell.glazedlists.SortedList<T> sortedList,
                       ca.odell.glazedlists.FilterList<T> filterList,
                       TableModel tableModel,
                       BodyLayerStack<T> bodyLayer,
                       IColumnPropertyAccessor<T> columnAccessor,
                       IConfigRegistry configRegistry) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.extension.glazedlists | 
|---|
| Fields in org.eclipse.nebula.widgets.nattable.extension.glazedlists declared as IConfigRegistry | |
|---|---|
| protected  IConfigRegistry | GlazedListsSortModel.configRegistry | 
| Constructors in org.eclipse.nebula.widgets.nattable.extension.glazedlists with parameters of type IConfigRegistry | |
|---|---|
| GlazedListsSortModel(ca.odell.glazedlists.SortedList<T> sortedList,
                     IColumnAccessor<T> columnAccessor,
                     IColumnPropertyResolver columnPropertyResolver,
                     IConfigRegistry configRegistry,
                     ILayer dataLayer) | |
| GlazedListsSortModel(ca.odell.glazedlists.SortedList<T> sortedList,
                     IColumnPropertyAccessor<T> columnPropertyAccessor,
                     IConfigRegistry configRegistry,
                     ILayer dataLayer) | |
| NatColumnTableFormat(IColumnAccessor<R> columnAccessor,
                     IColumnPropertyResolver columnPropertyResolver,
                     IConfigRegistry configRegistry,
                     ILayer columnHeaderDataLayer) | |
| NatColumnTableFormat(IColumnPropertyAccessor<R> columnPropertyAccessor,
                     IConfigRegistry configRegistry,
                     ILayer dataLayer) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.extension.glazedlists.filterrow | 
|---|
| Fields in org.eclipse.nebula.widgets.nattable.extension.glazedlists.filterrow declared as IConfigRegistry | |
|---|---|
| protected  IConfigRegistry | DefaultGlazedListsFilterStrategy.configRegistry | 
| Constructors in org.eclipse.nebula.widgets.nattable.extension.glazedlists.filterrow with parameters of type IConfigRegistry | |
|---|---|
| ComboBoxFilterRowHeaderComposite(ComboBoxGlazedListsFilterStrategy<T> filterStrategy,
                                 FilterRowComboBoxDataProvider<T> comboBoxDataProvider,
                                 ILayer columnHeaderLayer,
                                 IDataProvider columnHeaderDataProvider,
                                 IConfigRegistry configRegistry,
                                 boolean useDefaultConfiguration)Creates a new ComboBoxFilterRowHeaderComposite based on the given informations. | |
| ComboBoxFilterRowHeaderComposite(ca.odell.glazedlists.FilterList<T> filterList,
                                 ca.odell.glazedlists.matchers.CompositeMatcherEditor<T> matcherEditor,
                                 FilterRowComboBoxDataProvider<T> comboBoxDataProvider,
                                 IColumnAccessor<T> bodyDataColumnAccessor,
                                 ILayer columnHeaderLayer,
                                 IDataProvider columnHeaderDataProvider,
                                 IConfigRegistry configRegistry,
                                 boolean useDefaultConfiguration)Creates a new ComboBoxFilterRowHeaderComposite based on the given informations. | |
| ComboBoxFilterRowHeaderComposite(ca.odell.glazedlists.FilterList<T> filterList,
                                 ca.odell.glazedlists.matchers.CompositeMatcherEditor<T> matcherEditor,
                                 ILayer bodyLayer,
                                 Collection<T> baseCollection,
                                 IColumnAccessor<T> bodyDataColumnAccessor,
                                 ILayer columnHeaderLayer,
                                 IDataProvider columnHeaderDataProvider,
                                 IConfigRegistry configRegistry,
                                 boolean useDefaultConfiguration)Creates a new ComboBoxFilterRowHeaderComposite based on the given informations. | |
| ComboBoxFilterRowHeaderComposite(ca.odell.glazedlists.FilterList<T> filterList,
                                 FilterRowComboBoxDataProvider<T> comboBoxDataProvider,
                                 IColumnAccessor<T> bodyDataColumnAccessor,
                                 ILayer columnHeaderLayer,
                                 IDataProvider columnHeaderDataProvider,
                                 IConfigRegistry configRegistry)Creates a new ComboBoxFilterRowHeaderComposite based on the given informations. | |
| ComboBoxFilterRowHeaderComposite(ca.odell.glazedlists.FilterList<T> filterList,
                                 FilterRowComboBoxDataProvider<T> comboBoxDataProvider,
                                 IColumnAccessor<T> bodyDataColumnAccessor,
                                 ILayer columnHeaderLayer,
                                 IDataProvider columnHeaderDataProvider,
                                 IConfigRegistry configRegistry,
                                 boolean useDefaultConfiguration)Creates a new ComboBoxFilterRowHeaderComposite based on the given informations. | |
| ComboBoxFilterRowHeaderComposite(ca.odell.glazedlists.FilterList<T> filterList,
                                 ILayer bodyLayer,
                                 Collection<T> baseCollection,
                                 IColumnAccessor<T> bodyDataColumnAccessor,
                                 ILayer columnHeaderLayer,
                                 IDataProvider columnHeaderDataProvider,
                                 IConfigRegistry configRegistry)Creates a new ComboBoxFilterRowHeaderComposite based on the given informations. | |
| ComboBoxFilterRowHeaderComposite(ca.odell.glazedlists.FilterList<T> filterList,
                                 ILayer bodyLayer,
                                 Collection<T> baseCollection,
                                 IColumnAccessor<T> bodyDataColumnAccessor,
                                 ILayer columnHeaderLayer,
                                 IDataProvider columnHeaderDataProvider,
                                 IConfigRegistry configRegistry,
                                 boolean useDefaultConfiguration)Creates a new ComboBoxFilterRowHeaderComposite based on the given informations. | |
| ComboBoxGlazedListsFilterStrategy(FilterRowComboBoxDataProvider<T> comboBoxDataProvider,
                                  ca.odell.glazedlists.FilterList<T> filterList,
                                  ca.odell.glazedlists.matchers.CompositeMatcherEditor<T> matcherEditor,
                                  IColumnAccessor<T> columnAccessor,
                                  IConfigRegistry configRegistry) | |
| ComboBoxGlazedListsFilterStrategy(FilterRowComboBoxDataProvider<T> comboBoxDataProvider,
                                  ca.odell.glazedlists.FilterList<T> filterList,
                                  IColumnAccessor<T> columnAccessor,
                                  IConfigRegistry configRegistry) | |
| DefaultGlazedListsFilterStrategy(ca.odell.glazedlists.FilterList<T> filterList,
                                 ca.odell.glazedlists.matchers.CompositeMatcherEditor<T> matcherEditor,
                                 IColumnAccessor<T> columnAccessor,
                                 IConfigRegistry configRegistry)Create a new DefaultGlazedListsFilterStrategy on top of the given FilterList using the given CompositeMatcherEditor. | |
| DefaultGlazedListsFilterStrategy(ca.odell.glazedlists.FilterList<T> filterList,
                                 IColumnAccessor<T> columnAccessor,
                                 IConfigRegistry configRegistry)Create a new DefaultGlazedListsFilterStrategy on top of the given FilterList. | |
| DefaultGlazedListsStaticFilterStrategy(ca.odell.glazedlists.FilterList<T> filterList,
                                       ca.odell.glazedlists.matchers.CompositeMatcherEditor<T> matcherEditor,
                                       IColumnAccessor<T> columnAccessor,
                                       IConfigRegistry configRegistry)Create a new DefaultGlazedListsStaticFilterStrategy on top of the given FilterList using the given CompositeMatcherEditor. | |
| DefaultGlazedListsStaticFilterStrategy(ca.odell.glazedlists.FilterList<T> filterList,
                                       IColumnAccessor<T> columnAccessor,
                                       IConfigRegistry configRegistry)Create a new DefaultGlazedListsStaticFilterStrategy on top of the given FilterList. | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.extension.glazedlists.groupBy | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.extension.glazedlists.groupBy with parameters of type IConfigRegistry | |
|---|---|
| protected  void | DefaultGroupByThemeExtension.configureGroupByHeaderBackgroundColor(IConfigRegistry configRegistry)Registering the background color for the GroupBy header region. | 
| protected  void | DefaultGroupByThemeExtension.configureGroupByHint(IConfigRegistry configRegistry)Method to configure the styling of the GroupBy hint in the GroupBy header. | 
| protected  void | DefaultGroupByThemeExtension.configureGroupByObjectSelectionStyle(IConfigRegistry configRegistry)Registering the style configuration for the selected GroupBy objects. | 
| protected  void | DefaultGroupByThemeExtension.configureGroupByObjectStyle(IConfigRegistry configRegistry)Registering the style configuration for the GroupBy objects. | 
| protected  void | DefaultGroupByThemeExtension.configureGroupByStyle(IConfigRegistry configRegistry)Registering the style configuration for the GroupBy header region. | 
| protected  void | DefaultGroupByThemeExtension.configureGroupBySummarySelectionStyle(IConfigRegistry configRegistry)Registering the style configuration for the selected GroupBy summary. | 
| protected  void | DefaultGroupByThemeExtension.configureGroupBySummaryStyle(IConfigRegistry configRegistry)Registering the style configuration for the GroupBy summary. | 
|  void | GroupByHeaderConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
|  void | GroupByDataLayerConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
|  int | GroupByHeaderPainter.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | GroupByHeaderPainter.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  void | GroupByHeaderPainter.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle bounds,
          IConfigRegistry configRegistry) | 
|  void | DefaultGroupByThemeExtension.registerStyles(IConfigRegistry configRegistry) | 
|  void | DefaultGroupByThemeExtension.unregisterStyles(IConfigRegistry configRegistry) | 
| Constructors in org.eclipse.nebula.widgets.nattable.extension.glazedlists.groupBy with parameters of type IConfigRegistry | |
|---|---|
| GroupByDataLayer(GroupByModel groupByModel,
                 ca.odell.glazedlists.EventList<T> eventList,
                 IColumnAccessor<T> columnAccessor,
                 IConfigRegistry configRegistry) | |
| GroupByDataLayer(GroupByModel groupByModel,
                 ca.odell.glazedlists.EventList<T> eventList,
                 IColumnAccessor<T> columnAccessor,
                 IConfigRegistry configRegistry,
                 boolean useDefaultConfiguration) | |
| GroupByDataLayer(GroupByModel groupByModel,
                 ca.odell.glazedlists.EventList<T> eventList,
                 IColumnAccessor<T> columnAccessor,
                 IConfigRegistry configRegistry,
                 boolean smoothUpdates,
                 boolean useDefaultConfiguration) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.extension.glazedlists.test.integration | 
|---|
| Constructors in org.eclipse.nebula.widgets.nattable.extension.glazedlists.test.integration with parameters of type IConfigRegistry | |
|---|---|
| BodyLayerStackFixture(ca.odell.glazedlists.EventList<T> eventList,
                      IColumnPropertyAccessor<T> columnPropertyAccessor,
                      IConfigRegistry configRegistry) | |
| GlazedListsGridLayer(ca.odell.glazedlists.EventList<T> eventList,
                     String[] propertyNames,
                     Map<String,String> propertyToLabelMap,
                     IConfigRegistry configRegistry) | |
| GlazedListsGridLayer(ca.odell.glazedlists.EventList<T> eventList,
                     String[] propertyNames,
                     Map<String,String> propertyToLabelMap,
                     IConfigRegistry configRegistry,
                     boolean useDefaultConfiguration)The underlying DataLayercreated is able to handle Events raised by GlazedLists
 and fire corresponding NatTable events. | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.extension.poi | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.extension.poi with parameters of type IConfigRegistry | |
|---|---|
|  void | PoiExcelExporter.exportCell(OutputStream outputStream,
           Object exportDisplayValue,
           ILayerCell cell,
           IConfigRegistry configRegistry) | 
| protected  String | PoiExcelExporter.getDataFormatString(ILayerCell cell,
                    IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.filterrow | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.filterrow with parameters of type IConfigRegistry | |
|---|---|
| protected  org.eclipse.swt.graphics.Image | FilterIconPainter.getImage(ILayerCell cell,
         IConfigRegistry configRegistry) | 
| Constructors in org.eclipse.nebula.widgets.nattable.filterrow with parameters of type IConfigRegistry | |
|---|---|
| FilterRowDataLayer(IFilterStrategy<T> filterStrategy,
                   ILayer columnHeaderLayer,
                   IDataProvider columnHeaderDataProvider,
                   IConfigRegistry configRegistry) | |
| FilterRowDataProvider(IFilterStrategy<T> filterStrategy,
                      ILayer columnHeaderLayer,
                      IDataProvider columnHeaderDataProvider,
                      IConfigRegistry configRegistry) | |
| FilterRowHeaderComposite(IFilterStrategy<T> filterStrategy,
                         ILayer columnHeaderLayer,
                         IDataProvider columnHeaderDataProvider,
                         IConfigRegistry configRegistry) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.filterrow.combobox | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.filterrow.combobox with parameters of type IConfigRegistry | |
|---|---|
|  void | ComboBoxFilterRowConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
| protected  org.eclipse.swt.graphics.Image | ComboBoxFilterIconPainter.getImage(ILayerCell cell,
         IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.filterrow.config | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.filterrow.config with parameters of type IConfigRegistry | |
|---|---|
|  void | DefaultFilterRowConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.grid.layer.config | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.grid.layer.config with parameters of type IConfigRegistry | |
|---|---|
| protected  void | DefaultRowStyleConfiguration.configureEvenRowStyle(IConfigRegistry configRegistry) | 
| protected  void | DefaultRowStyleConfiguration.configureOddRowStyle(IConfigRegistry configRegistry) | 
|  void | DefaultRowStyleConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.group.config | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.group.config with parameters of type IConfigRegistry | |
|---|---|
|  void | DefaultRowGroupHeaderLayerConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
|  void | DefaultColumnGroupHeaderLayerConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.group.painter | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.group.painter with parameters of type IConfigRegistry | |
|---|---|
| protected  org.eclipse.swt.graphics.Image | RowGroupExpandCollapseImagePainter.getImage(ILayerCell cell,
         IConfigRegistry configRegistry) | 
| protected  org.eclipse.swt.graphics.Image | ColumnGroupExpandCollapseImagePainter.getImage(ILayerCell cell,
         IConfigRegistry configRegistry) | 
|  int | ColumnGroupHeaderTextPainter.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | RowGroupHeaderTextPainter.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  int | ColumnGroupHeaderTextPainter.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry)Preferred width is used during auto resize. | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.layer | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.layer with parameters of type IConfigRegistry | |
|---|---|
|  ICellPainter | InvertedLayer.getCellPainter(int columnPosition,
               int rowPosition,
               ILayerCell cell,
               IConfigRegistry configRegistry) | 
|  ICellPainter | ILayer.getCellPainter(int columnPosition,
               int rowPosition,
               ILayerCell cell,
               IConfigRegistry configRegistry) | 
|  ICellPainter | CompositeLayer.getCellPainter(int compositeColumnPosition,
               int compositeRowPosition,
               ILayerCell cell,
               IConfigRegistry configRegistry) | 
|  ICellPainter | AbstractLayerTransform.getCellPainter(int columnPosition,
               int rowPosition,
               ILayerCell cell,
               IConfigRegistry configRegistry) | 
|  ICellPainter | AbstractLayer.getCellPainter(int columnPosition,
               int rowPosition,
               ILayerCell cell,
               IConfigRegistry configRegistry) | 
|  ICellPainter | AbstractIndexLayerTransform.getCellPainter(int columnPosition,
               int rowPosition,
               ILayerCell cell,
               IConfigRegistry configRegistry) | 
|  void | CompositeLayer.CompositeLayerPainter.paintLayer(ILayer natLayer,
           org.eclipse.swt.graphics.GC gc,
           int xOffset,
           int yOffset,
           org.eclipse.swt.graphics.Rectangle rectangle,
           IConfigRegistry configuration) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.layer.cell | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.layer.cell with parameters of type IConfigRegistry | |
|---|---|
| static String | CellDisplayConversionUtils.convertDataType(ILayerCell cell,
                IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.layer.config | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.layer.config with parameters of type IConfigRegistry | |
|---|---|
|  void | DefaultRowHeaderStyleConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
|  void | DefaultColumnHeaderStyleConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
|  void | ColumnStyleChooserConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
| protected  void | DefaultRowHeaderStyleConfiguration.configureRowHeaderCellPainter(IConfigRegistry configRegistry) | 
| protected  void | DefaultRowHeaderStyleConfiguration.configureRowHeaderStyle(IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.painter | 
|---|
| Constructors in org.eclipse.nebula.widgets.nattable.painter with parameters of type IConfigRegistry | |
|---|---|
| NatTableBorderOverlayPainter(boolean renderAllBorderLines,
                             IConfigRegistry configRegistry)Creates a NatTableBorderOverlayPainter that paints gray border lines by default. | |
| NatTableBorderOverlayPainter(org.eclipse.swt.graphics.Color borderColor,
                             boolean renderAllBorderLines,
                             IConfigRegistry configRegistry)Creates a NatTableBorderOverlayPainter that paints border lines. | |
| NatTableBorderOverlayPainter(org.eclipse.swt.graphics.Color borderColor,
                             IConfigRegistry configRegistry)Creates a NatTableBorderOverlayPainter that paints border lines to the top and to the left. | |
| NatTableBorderOverlayPainter(IConfigRegistry configRegistry)Creates a NatTableBorderOverlayPainter that paints by default gray border lines to the top and to the left. | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.painter.cell | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.painter.cell with parameters of type IConfigRegistry | |
|---|---|
| static org.eclipse.swt.graphics.Color | BlendedBackgroundPainter.blendBackgroundColour(ILayerCell cell,
                      IConfigRegistry configRegistry,
                      org.eclipse.swt.graphics.RGB baseColor)Returns a background colour for the specified cell. | 
| protected  Boolean | ColumnHeaderCheckBoxPainter.convertDataType(ILayerCell cell,
                IConfigRegistry configRegistry) | 
| protected  Boolean | CheckBoxPainter.convertDataType(ILayerCell cell,
                IConfigRegistry configRegistry) | 
| protected  String | AbstractTextPainter.convertDataType(ILayerCell cell,
                IConfigRegistry configRegistry)Convert the data value of the cell using the IDisplayConverterfrom theIConfigRegistry | 
| protected  org.eclipse.swt.graphics.Color | GradientBackgroundPainter.getBackgroundColour(ILayerCell cell,
                    IConfigRegistry configRegistry)Searches the background color to be used for gradient sweeping. | 
| protected  org.eclipse.swt.graphics.Color | BlendedBackgroundPainter.getBackgroundColour(ILayerCell cell,
                    IConfigRegistry configRegistry) | 
| protected  org.eclipse.swt.graphics.Color | BackgroundPainter.getBackgroundColour(ILayerCell cell,
                    IConfigRegistry configRegistry) | 
|  ICellPainter | ImagePainter.getCellPainterAt(int x,
                 int y,
                 ILayerCell cell,
                 org.eclipse.swt.graphics.GC gc,
                 org.eclipse.swt.graphics.Rectangle bounds,
                 IConfigRegistry configRegistry) | 
|  ICellPainter | ICellPainter.getCellPainterAt(int x,
                 int y,
                 ILayerCell cell,
                 org.eclipse.swt.graphics.GC gc,
                 org.eclipse.swt.graphics.Rectangle adjustedCellBounds,
                 IConfigRegistry configRegistry) | 
|  ICellPainter | CellPainterWrapper.getCellPainterAt(int x,
                 int y,
                 ILayerCell cell,
                 org.eclipse.swt.graphics.GC gc,
                 org.eclipse.swt.graphics.Rectangle adjustedCellBounds,
                 IConfigRegistry configRegistry) | 
|  ICellPainter | AbstractCellPainter.getCellPainterAt(int x,
                 int y,
                 ILayerCell cell,
                 org.eclipse.swt.graphics.GC gc,
                 org.eclipse.swt.graphics.Rectangle adjustedCellBounds,
                 IConfigRegistry configRegistry) | 
|  int | ColumnHeaderCheckBoxPainter.getCheckedCellsCount(int columnPosition,
                     IConfigRegistry configRegistry) | 
| protected  org.eclipse.swt.graphics.Color | GradientBackgroundPainter.getForeGroundColour(ILayerCell cell,
                    IConfigRegistry configRegistry)Searches the foreground color to be used for gradient sweeping. | 
| protected  org.eclipse.swt.graphics.Image | TreeCheckBoxPainter.getImage(ILayerCell cell,
         IConfigRegistry configRegistry) | 
| protected  org.eclipse.swt.graphics.Image | ImagePainter.getImage(ILayerCell cell,
         IConfigRegistry configRegistry) | 
| protected  org.eclipse.swt.graphics.Image | ColumnHeaderCheckBoxPainter.getImage(ILayerCell cell,
         IConfigRegistry configRegistry) | 
| protected  org.eclipse.swt.graphics.Image | CheckBoxPainter.getImage(ILayerCell cell,
         IConfigRegistry configRegistry) | 
|  int | VerticalTextPainter.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | VerticalTextImagePainter.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | TextPainter.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | TableCellPainter.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | ImagePainter.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | ICellPainter.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry)Get the preferred height of the cell when rendered by this painter. | 
|  int | CellPainterWrapper.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | ButtonCellPainter.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | BackgroundImagePainter.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | VerticalTextPainter.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  int | VerticalTextImagePainter.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  int | TextPainter.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  int | TableCellPainter.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  int | ImagePainter.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  int | ICellPainter.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry)Get the preferred width of the cell when rendered by this painter. | 
|  int | CellPainterWrapper.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  int | ButtonCellPainter.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  int | BackgroundImagePainter.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
| protected  int | TableCellPainter.getSubCellHeight(ILayerCell subCell,
                 org.eclipse.swt.graphics.GC gc,
                 IConfigRegistry configRegistry)Get the height for the sub cell. | 
|  org.eclipse.swt.graphics.Rectangle | CellPainterWrapper.getWrappedPainterBounds(ILayerCell cell,
                        org.eclipse.swt.graphics.GC gc,
                        org.eclipse.swt.graphics.Rectangle bounds,
                        IConfigRegistry configRegistry) | 
| protected  boolean | ColumnHeaderCheckBoxPainter.isChecked(ILayerCell cell,
          IConfigRegistry configRegistry) | 
| protected  boolean | CheckBoxPainter.isChecked(ILayerCell cell,
          IConfigRegistry configRegistry) | 
|  void | VerticalTextPainter.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle rectangle,
          IConfigRegistry configRegistry) | 
|  void | VerticalTextImagePainter.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle rectangle,
          IConfigRegistry configRegistry) | 
|  void | TextPainter.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle rectangle,
          IConfigRegistry configRegistry) | 
|  void | TableCellPainter.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle bounds,
          IConfigRegistry configRegistry) | 
|  void | PasswordTextPainter.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle rectangle,
          IConfigRegistry configRegistry) | 
|  void | ImagePainter.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle bounds,
          IConfigRegistry configRegistry) | 
|  void | ICellPainter.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle bounds,
          IConfigRegistry configRegistry) | 
|  void | GradientBackgroundPainter.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle bounds,
          IConfigRegistry configRegistry) | 
|  void | CellPainterWrapper.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle adjustedCellBounds,
          IConfigRegistry configRegistry) | 
|  void | ButtonCellPainter.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle bounds,
          IConfigRegistry configRegistry) | 
|  void | BackgroundPainter.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle bounds,
          IConfigRegistry configRegistry) | 
|  void | BackgroundImagePainter.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle rectangle,
          IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.painter.cell.decorator | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.painter.cell.decorator with parameters of type IConfigRegistry | |
|---|---|
| protected  org.eclipse.swt.graphics.Color | PaddingDecorator.getBackgroundColor(ILayerCell cell,
                   IConfigRegistry configRegistry)Extract the background color that is registered for the given ILayerCell. | 
|  org.eclipse.swt.graphics.Rectangle | CellPainterDecorator.getBaseCellPainterBounds(ILayerCell cell,
                         org.eclipse.swt.graphics.GC gc,
                         org.eclipse.swt.graphics.Rectangle adjustedCellBounds,
                         IConfigRegistry configRegistry) | 
|  ICellPainter | PaddingDecorator.getCellPainterAt(int x,
                 int y,
                 ILayerCell cell,
                 org.eclipse.swt.graphics.GC gc,
                 org.eclipse.swt.graphics.Rectangle adjustedCellBounds,
                 IConfigRegistry configRegistry) | 
|  ICellPainter | CellPainterDecorator.getCellPainterAt(int x,
                 int y,
                 ILayerCell cell,
                 org.eclipse.swt.graphics.GC gc,
                 org.eclipse.swt.graphics.Rectangle adjustedCellBounds,
                 IConfigRegistry configRegistry) | 
|  org.eclipse.swt.graphics.Rectangle | CellPainterDecorator.getDecoratorCellPainterBounds(ILayerCell cell,
                              org.eclipse.swt.graphics.GC gc,
                              org.eclipse.swt.graphics.Rectangle adjustedCellBounds,
                              IConfigRegistry configRegistry) | 
|  int | XPBackgroundDecorator.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | PaddingDecorator.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | LineBorderDecorator.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | CustomLineBorderDecorator.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | CellPainterDecorator.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | BeveledBorderDecorator.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | XPBackgroundDecorator.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  int | PaddingDecorator.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  int | LineBorderDecorator.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  int | CustomLineBorderDecorator.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  int | CellPainterDecorator.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  int | BeveledBorderDecorator.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  org.eclipse.swt.graphics.Rectangle | BeveledBorderDecorator.getWrappedPainterBounds(ILayerCell cell,
                        org.eclipse.swt.graphics.GC gc,
                        org.eclipse.swt.graphics.Rectangle bounds,
                        IConfigRegistry configRegistry) | 
|  void | XPBackgroundDecorator.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle rectangle,
          IConfigRegistry configRegistry) | 
|  void | PercentageBarDecorator.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle rectangle,
          IConfigRegistry configRegistry) | 
|  void | PaddingDecorator.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle adjustedCellBounds,
          IConfigRegistry configRegistry) | 
|  void | LineBorderDecorator.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle rectangle,
          IConfigRegistry configRegistry) | 
|  void | CustomLineBorderDecorator.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle rectangle,
          IConfigRegistry configRegistry) | 
|  void | CellPainterDecorator.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle adjustedCellBounds,
          IConfigRegistry configRegistry) | 
|  void | BeveledBorderDecorator.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle adjustedCellBounds,
          IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.painter.layer | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.painter.layer with parameters of type IConfigRegistry | |
|---|---|
| protected  void | GridLineCellLayerPainter.drawGridLines(ILayer natLayer,
              org.eclipse.swt.graphics.GC gc,
              org.eclipse.swt.graphics.Rectangle rectangle,
              IConfigRegistry configRegistry) | 
| protected  void | NatLayerPainter.paintBackground(ILayer natLayer,
                org.eclipse.swt.graphics.GC gc,
                int xOffset,
                int yOffset,
                org.eclipse.swt.graphics.Rectangle rectangle,
                IConfigRegistry configRegistry) | 
| protected  void | NatGridLayerPainter.paintBackground(ILayer natLayer,
                org.eclipse.swt.graphics.GC gc,
                int xOffset,
                int yOffset,
                org.eclipse.swt.graphics.Rectangle rectangle,
                IConfigRegistry configRegistry) | 
| protected  void | CellLayerPainter.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          IConfigRegistry configRegistry) | 
|  void | NatLayerPainter.paintLayer(ILayer natLayer,
           org.eclipse.swt.graphics.GC gc,
           int xOffset,
           int yOffset,
           org.eclipse.swt.graphics.Rectangle rectangle,
           IConfigRegistry configRegistry) | 
|  void | ILayerPainter.paintLayer(ILayer natLayer,
           org.eclipse.swt.graphics.GC gc,
           int xOffset,
           int yOffset,
           org.eclipse.swt.graphics.Rectangle rectangle,
           IConfigRegistry configuration) | 
|  void | GridLineCellLayerPainter.paintLayer(ILayer natLayer,
           org.eclipse.swt.graphics.GC gc,
           int xOffset,
           int yOffset,
           org.eclipse.swt.graphics.Rectangle rectangle,
           IConfigRegistry configRegistry) | 
|  void | CellLayerPainter.paintLayer(ILayer natLayer,
           org.eclipse.swt.graphics.GC gc,
           int xOffset,
           int yOffset,
           org.eclipse.swt.graphics.Rectangle pixelRectangle,
           IConfigRegistry configRegistry) | 
| protected  void | NatLayerPainter.paintOverlays(ILayer natLayer,
              org.eclipse.swt.graphics.GC gc,
              int xOffset,
              int yOffset,
              org.eclipse.swt.graphics.Rectangle rectangle,
              IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.print | 
|---|
| Constructors in org.eclipse.nebula.widgets.nattable.print with parameters of type IConfigRegistry | |
|---|---|
| LayerPrinter(ILayer layer,
             IConfigRegistry configRegistry) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.print.command | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.print.command that return IConfigRegistry | |
|---|---|
|  IConfigRegistry | PrintCommand.getConfigRegistry() | 
| Constructors in org.eclipse.nebula.widgets.nattable.print.command with parameters of type IConfigRegistry | |
|---|---|
| PrintCommand(IConfigRegistry configRegistry,
             org.eclipse.swt.widgets.Shell shell) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.resize | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.resize with parameters of type IConfigRegistry | |
|---|---|
| static int[] | MaxCellBoundsHelper.getPreferredColumnWidths(IConfigRegistry configRegistry,
                         GCFactory gcFactory,
                         ILayer layer,
                         int[] columnPositions) | 
| static int[] | MaxCellBoundsHelper.getPreferredRowHeights(IConfigRegistry configRegistry,
                       GCFactory gcFactory,
                       ILayer layer,
                       int[] rows) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.resize.command | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.resize.command that return IConfigRegistry | |
|---|---|
|  IConfigRegistry | InitializeAutoResizeRowsCommand.getConfigRegistry() | 
|  IConfigRegistry | InitializeAutoResizeColumnsCommand.getConfigRegistry() | 
|  IConfigRegistry | AutoResizeRowsCommand.getConfigRegistry() | 
|  IConfigRegistry | AutoResizeColumnsCommand.getConfigRegistry() | 
| Constructors in org.eclipse.nebula.widgets.nattable.resize.command with parameters of type IConfigRegistry | |
|---|---|
| InitializeAutoResizeColumnsCommand(ILayer layer,
                                   int columnPosition,
                                   IConfigRegistry configRegistry,
                                   GCFactory gcFactory) | |
| InitializeAutoResizeRowsCommand(ILayer layer,
                                int rowPosition,
                                IConfigRegistry configRegistry,
                                GCFactory gcFactory) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.search.strategy | 
|---|
| Constructors in org.eclipse.nebula.widgets.nattable.search.strategy with parameters of type IConfigRegistry | |
|---|---|
| ColumnSearchStrategy(int[] columnPositions,
                     IConfigRegistry configRegistry) | |
| ColumnSearchStrategy(int[] columnPositions,
                     int startingRowPosition,
                     IConfigRegistry configRegistry,
                     String searchDirection) | |
| GridSearchStrategy(IConfigRegistry configRegistry,
                   boolean wrapSearch,
                   boolean columnFirst) | |
| GridSearchStrategy(IConfigRegistry configRegistry,
                   boolean wrapSearch,
                   String searchDirection,
                   boolean columnFirst) | |
| RowSearchStrategy(int[] rowPositions,
                  IConfigRegistry configRegistry) | |
| RowSearchStrategy(int[] rowPositions,
                  int startingColumnPosition,
                  IConfigRegistry configRegistry,
                  String searchDirection) | |
| SelectionSearchStrategy(IConfigRegistry configRegistry) | |
| SelectionSearchStrategy(IConfigRegistry configRegistry,
                        boolean columnFirst) | |
| SelectionSearchStrategy(IConfigRegistry configRegistry,
                        String searchDirection,
                        boolean columnFirst) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.selection | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.selection with parameters of type IConfigRegistry | |
|---|---|
|  void | SelectionLayerPainter.paintLayer(ILayer natLayer,
           org.eclipse.swt.graphics.GC gc,
           int xOffset,
           int yOffset,
           org.eclipse.swt.graphics.Rectangle pixelRectangle,
           IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.selection.config | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.selection.config with parameters of type IConfigRegistry | |
|---|---|
| protected  void | DefaultSelectionStyleConfiguration.configureHeaderFullySelectedStyle(IConfigRegistry configRegistry) | 
| protected  void | DefaultSelectionStyleConfiguration.configureHeaderHasSelectionStyle(IConfigRegistry configRegistry) | 
|  void | DefaultSelectionStyleConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
| protected  void | DefaultSelectionStyleConfiguration.configureSelectionAnchorGridLineStyle(IConfigRegistry configRegistry) | 
| protected  void | DefaultSelectionStyleConfiguration.configureSelectionAnchorStyle(IConfigRegistry configRegistry) | 
| protected  void | DefaultSelectionStyleConfiguration.configureSelectionStyle(IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.sort.config | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.sort.config with parameters of type IConfigRegistry | |
|---|---|
|  void | DefaultSortConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.sort.painter | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.sort.painter with parameters of type IConfigRegistry | |
|---|---|
| protected  org.eclipse.swt.graphics.Image | SortIconPainter.getImage(ILayerCell cell,
         IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.style | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.style with parameters of type IConfigRegistry | |
|---|---|
| static List<org.eclipse.swt.graphics.Color> | CellStyleUtil.getAllBackgroundColors(ILayerCell cell,
                       IConfigRegistry configRegistry,
                       String displayMode) | 
| static IStyle | CellStyleUtil.getCellStyle(ILayerCell cell,
             IConfigRegistry configRegistry) | 
| Constructors in org.eclipse.nebula.widgets.nattable.style with parameters of type IConfigRegistry | |
|---|---|
| CellStyleProxy(IConfigRegistry configRegistry,
               String targetDisplayMode,
               List<String> configLabels) | |
| StyleProxy(ConfigAttribute<IStyle> styleConfigAttribute,
           IConfigRegistry configRegistry,
           String targetDisplayMode,
           List<String> configLabels) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.style.editor | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.style.editor that return IConfigRegistry | |
|---|---|
|  IConfigRegistry | GridStyleParameterObject.getConfigRegistry() | 
| Constructors in org.eclipse.nebula.widgets.nattable.style.editor with parameters of type IConfigRegistry | |
|---|---|
| GridStyleParameterObject(IConfigRegistry configRegistry) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.style.editor.command | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.style.editor.command that return IConfigRegistry | |
|---|---|
|  IConfigRegistry | DisplayColumnStyleEditorCommand.getConfigRegistry() | 
| Constructors in org.eclipse.nebula.widgets.nattable.style.editor.command with parameters of type IConfigRegistry | |
|---|---|
| DisplayColumnStyleEditorCommand(ILayer natLayer,
                                IConfigRegistry configRegistry,
                                int columnPosition,
                                int rowPosition) | |
| DisplayColumnStyleEditorCommandHandler(SelectionLayer selectionLayer,
                                       ColumnOverrideLabelAccumulator labelAccumulator,
                                       IConfigRegistry configRegistry) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.style.theme | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.style.theme with parameters of type IConfigRegistry | |
|---|---|
| protected  void | ThemeConfiguration.configureAlternatingRowStyle(IConfigRegistry configRegistry)When creating a NatTable grid composition, using the DefaultGridLayerConfiguration, theAlternatingRowConfigLabelAccumulatoris configured for the body region to apply labels for 
 alternating rows. | 
| protected  void | ThemeConfiguration.configureColumnGroupHeaderStyle(IConfigRegistry configRegistry)This method is used to register style configurations for the column group header in a NatTable. | 
| protected  void | ThemeConfiguration.configureColumnHeaderSelectionStyle(IConfigRegistry configRegistry)Register the style configurations for rendering the selection in a column header in a NatTable. | 
| protected  void | ThemeConfiguration.configureColumnHeaderStyle(IConfigRegistry configRegistry)Register the style configurations for rendering the column header in a NatTable. | 
| protected  void | ThemeConfiguration.configureCornerSelectionStyle(IConfigRegistry configRegistry)Register the style configurations for rendering the selection in the corner of a NatTable. | 
| protected  void | ThemeConfiguration.configureCornerStyle(IConfigRegistry configRegistry)Register the style configurations for rendering the corner in a NatTable. | 
| protected  void | ThemeConfiguration.configureDefaultSelectionStyle(IConfigRegistry configRegistry)Register default selection style configurations. | 
| protected  void | ThemeConfiguration.configureDefaultStyle(IConfigRegistry configRegistry)Register default style configurations. | 
| protected  void | ThemeConfiguration.configureEditErrorStyle(IConfigRegistry configRegistry)This method is used to register the styles that should be applied to an editor control in case of conversion/validation errors. | 
| protected  void | ThemeConfiguration.configureFilterRowStyle(IConfigRegistry configRegistry)This method is used to register style configurations for the filter row. | 
| protected  void | ThemeConfiguration.configureFreezeStyle(IConfigRegistry configRegistry)This method is used to register the style attributes for freeze rendering. | 
| protected  void | ThemeConfiguration.configureGridLineStyle(IConfigRegistry configRegistry)This method is used to register the grid line styling, which consists of grid line color and the configuration if grid lines should be rendered or not. | 
| protected  void | ThemeConfiguration.configureHoverSelectionStyle(IConfigRegistry configRegistry)Register the style configurations for hovering selections. | 
| protected  void | ThemeConfiguration.configureHoverStyle(IConfigRegistry configRegistry)Register the style configurations for hovering. | 
|  void | ThemeConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
| protected  void | ThemeConfiguration.configureRowGroupHeaderStyle(IConfigRegistry configRegistry)This method is used to register style configurations for the row group header in a NatTable. | 
| protected  void | ThemeConfiguration.configureRowHeaderSelectionStyle(IConfigRegistry configRegistry)Register the style configurations for rendering the selection in a row header in a NatTable. | 
| protected  void | ThemeConfiguration.configureRowHeaderStyle(IConfigRegistry configRegistry)Register the style configurations for rendering the row header in a NatTable. | 
| protected  void | ThemeConfiguration.configureSelectedSortHeaderStyle(IConfigRegistry configRegistry)This method is used to register styles for the selected sort header layer. | 
| protected  void | ThemeConfiguration.configureSelectionAnchorStyle(IConfigRegistry configRegistry)Register the style configurations to render the selection anchor. | 
| protected  void | ThemeConfiguration.configureSortHeaderStyle(IConfigRegistry configRegistry)This method is used to register styles for the sort header layer. | 
| protected  void | ThemeConfiguration.configureSummaryRowStyle(IConfigRegistry configRegistry)This method is used to register style configurations for a summary row. | 
| protected  void | ThemeConfiguration.configureTreeStyle(IConfigRegistry configRegistry)This method is used to register style configurations for a tree representation. | 
|  void | IThemeExtension.registerStyles(IConfigRegistry configRegistry)Register the style configurations that should be added by this IThemeExtension. | 
|  void | IThemeExtension.unregisterStyles(IConfigRegistry configRegistry)Unregister the style configurations that were registered by this IThemeExtension. | 
|  void | ThemeConfiguration.unregisterThemeStyleConfigurations(IConfigRegistry configRegistry)Unregister the style configurations that were applied by this ThemeConfiguration. | 
| Constructors in org.eclipse.nebula.widgets.nattable.style.theme with parameters of type IConfigRegistry | |
|---|---|
| ThemeManager(IConfigRegistry configRegistry)Creates a ThemeManager that is connected to the given IConfigRegistry. | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.summaryrow | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.summaryrow with parameters of type IConfigRegistry | |
|---|---|
| protected  void | DefaultSummaryRowConfiguration.addSummaryProviderConfig(IConfigRegistry configRegistry) | 
| protected  void | DefaultSummaryRowConfiguration.addSummaryRowDisplayConverter(IConfigRegistry configRegistry)Add a specialized DefaultDisplayConverterthat will show "..." if there is no value
 to show in the summary row yet. | 
| protected  void | DefaultSummaryRowConfiguration.addSummaryRowStyleConfig(IConfigRegistry configRegistry) | 
|  void | DefaultSummaryRowConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
| Constructors in org.eclipse.nebula.widgets.nattable.summaryrow with parameters of type IConfigRegistry | |
|---|---|
| SummaryRowLayer(IUniqueIndexLayer underlyingDataLayer,
                IConfigRegistry configRegistry)Creates a SummaryRowLayer on top of the given underlying layer. | |
| SummaryRowLayer(IUniqueIndexLayer underlyingDataLayer,
                IConfigRegistry configRegistry,
                boolean autoConfigure)Creates a SummaryRowLayer on top of the given underlying layer. | |
| SummaryRowLayer(IUniqueIndexLayer underlyingDataLayer,
                IConfigRegistry configRegistry,
                boolean smoothUpdates,
                boolean autoConfigure)Creates a SummaryRowLayer on top of the given underlying layer. | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.test.fixture | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.test.fixture that return IConfigRegistry | |
|---|---|
|  IConfigRegistry | CellPainterFixture.getLastPaintedConfigRegistry() | 
| Methods in org.eclipse.nebula.widgets.nattable.test.fixture with parameters of type IConfigRegistry | |
|---|---|
|  ICellPainter | TestLayer.getCellPainter(int columnPosition,
               int rowPosition,
               ILayerCell cell,
               IConfigRegistry configRegistry) | 
|  int | CellPainterFixture.getPreferredHeight(ILayerCell cell,
                   org.eclipse.swt.graphics.GC gc,
                   IConfigRegistry configRegistry) | 
|  int | CellPainterFixture.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  void | CellPainterFixture.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle bounds,
          IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.tickupdate.command | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.tickupdate.command that return IConfigRegistry | |
|---|---|
|  IConfigRegistry | TickUpdateCommand.getConfigRegistry() | 
| Constructors in org.eclipse.nebula.widgets.nattable.tickupdate.command with parameters of type IConfigRegistry | |
|---|---|
| TickUpdateCommand(IConfigRegistry configRegistry,
                  boolean increment) | |
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.tickupdate.config | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.tickupdate.config with parameters of type IConfigRegistry | |
|---|---|
|  void | DefaultTickUpdateConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.tree | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.tree with parameters of type IConfigRegistry | |
|---|---|
|  ICellPainter | TreeLayer.getCellPainter(int columnPosition,
               int rowPosition,
               ILayerCell cell,
               IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.tree.config | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.tree.config with parameters of type IConfigRegistry | |
|---|---|
|  void | DefaultTreeLayerConfiguration.configureRegistry(IConfigRegistry configRegistry) | 
|  Object | TreeExportFormatter.formatForExport(ILayerCell cell,
                IConfigRegistry configRegistry) | 
| Uses of IConfigRegistry in org.eclipse.nebula.widgets.nattable.tree.painter | 
|---|
| Methods in org.eclipse.nebula.widgets.nattable.tree.painter with parameters of type IConfigRegistry | |
|---|---|
| protected  org.eclipse.swt.graphics.Image | TreeImagePainter.getImage(ILayerCell cell,
         IConfigRegistry configRegistry) | 
|  int | IndentedTreeImagePainter.getPreferredWidth(ILayerCell cell,
                  org.eclipse.swt.graphics.GC gc,
                  IConfigRegistry configRegistry) | 
|  org.eclipse.swt.graphics.Rectangle | IndentedTreeImagePainter.getWrappedPainterBounds(ILayerCell cell,
                        org.eclipse.swt.graphics.GC gc,
                        org.eclipse.swt.graphics.Rectangle bounds,
                        IConfigRegistry configRegistry) | 
|  void | IndentedTreeImagePainter.paintCell(ILayerCell cell,
          org.eclipse.swt.graphics.GC gc,
          org.eclipse.swt.graphics.Rectangle bounds,
          IConfigRegistry configRegistry) | 
| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||