Uses of Interface
org.tentackle.fx.table.TableConfiguration
-
Packages that use TableConfiguration Package Description org.tentackle.fx Extended FX layer.org.tentackle.fx.bind Tentackle binding for FX.org.tentackle.fx.component Extended FX components.org.tentackle.fx.table FX table support. -
-
Uses of TableConfiguration in org.tentackle.fx
Methods in org.tentackle.fx that return TableConfiguration Modifier and Type Method Description <S> TableConfiguration<S>DefaultFxFactory. createTableConfiguration(java.lang.Class<S> objectClass, java.lang.String name)<S> TableConfiguration<S>DefaultFxFactory. createTableConfiguration(S template, java.lang.String name)<S> TableConfiguration<S>FxFactory. createTableConfiguration(java.lang.Class<S> objectClass, java.lang.String name)Creates an empty configuration for a PDO class.<S> TableConfiguration<S>FxFactory. createTableConfiguration(S template, java.lang.String name)Creates an empty configuration from a template object. -
Uses of TableConfiguration in org.tentackle.fx.bind
Methods in org.tentackle.fx.bind that return TableConfiguration Modifier and Type Method Description TableConfiguration<S>DefaultFxTableBinder. getTableConfiguration()TableConfiguration<S>FxTableBinder. getTableConfiguration()Gets the table configuration.Methods in org.tentackle.fx.bind with parameters of type TableConfiguration Modifier and Type Method Description <S> FxTableBinder<S>DefaultFxBindingFactory. createTableBinder(TableConfiguration<S> tableConfiguration)<S> FxTableBinder<S>FxBindingFactory. createTableBinder(TableConfiguration<S> tableConfiguration)Creates a table binder.Constructors in org.tentackle.fx.bind with parameters of type TableConfiguration Constructor Description DefaultFxTableBinder(TableConfiguration<S> tableConfiguration)Creates a binder for a table. -
Uses of TableConfiguration in org.tentackle.fx.component
Methods in org.tentackle.fx.component that return TableConfiguration Modifier and Type Method Description TableConfiguration<S>FxTableView. getConfiguration()Gets the table configuration.Methods in org.tentackle.fx.component with parameters of type TableConfiguration Modifier and Type Method Description voidFxTableView. setConfiguration(TableConfiguration<S> configuration)Sets the table configuration. -
Uses of TableConfiguration in org.tentackle.fx.table
Classes in org.tentackle.fx.table that implement TableConfiguration Modifier and Type Class Description classDefaultTableConfiguration<S>Default implementation of a table configuration.Methods in org.tentackle.fx.table that return TableConfiguration Modifier and Type Method Description TableConfiguration<T>DefaultTableConfigurationProvider. createTableConfiguration()Creates the table configuration.
The default implementation adds all bindable elements and invokesDefaultTableConfigurationProvider.addBindableColumns(TableConfiguration, String...)without optional components.TableConfiguration<T>TableConfigurationProvider. createTableConfiguration()Creates the table configuration.TableConfiguration<S>TableColumnConfiguration. getTableConfiguration()Gets the table configuration.Methods in org.tentackle.fx.table with parameters of type TableConfiguration Modifier and Type Method Description protected voidDefaultTableConfigurationProvider. addBindableColumns(TableConfiguration<T> configuration, java.lang.String... components)Adds all bindable columns.
Override this method to specify the optional components.protected voidDefaultTableConfigurationProvider. addBindableColumns(TableConfiguration<T> configuration, java.lang.String columnPrefix, java.lang.String displayPrefix, java.lang.Class<?> clazz, java.lang.String... components)Recursively adds all bindable columns including components.
-