Package | Description |
---|---|
griffon.plugins.glazedlists.javafx | |
griffon.plugins.glazedlists.javafx.gui | |
griffon.plugins.glazedlists.javafx.models |
Modifier and Type | Method and Description |
---|---|
static <T> FXTableFormat<T> |
GlazedListsJavaFX.tableFormat(FXTableFormat.Options... options)
Creates a
FXTableFormat . |
static <T> FXTableFormat<T> |
GlazedListsJavaFX.tableFormat(List<FXTableFormat.Options> options)
Creates a
FXTableFormat . |
static <T> FXTableFormat<T> |
GlazedListsJavaFX.tableFormat(String[] propertyNames)
Creates a
FXTableFormat . |
static <T> FXTableFormat<T> |
GlazedListsJavaFX.tableFormat(String[] propertyNames,
String[] columnLabels,
ColumnReader[] columnReaders)
Creates a
FXTableFormat . |
Modifier and Type | Method and Description |
---|---|
static <E> FXTableViewModel<E> |
GlazedListsJavaFX.eventTableViewModel(ca.odell.glazedlists.EventList<E> source,
FXTableFormat<? super E> tableFormat)
Creates a new table model that extracts column data from the given
source using the the given tableFormat . |
static <E> FXTableViewModel<E> |
GlazedListsJavaFX.eventTableViewModel(javafx.collections.ObservableList<E> source,
FXTableFormat<? super E> tableFormat)
Creates a new table model that extracts column data from the given
source using the the given tableFormat . |
static <E> FXTableViewModel<E> |
GlazedListsJavaFX.eventTableViewModelWithThreadProxyList(ca.odell.glazedlists.EventList<E> source,
FXTableFormat<? super E> tableFormat)
Creates a new table model that extracts column data from the given
source
using the the given tableFormat . |
Modifier and Type | Interface and Description |
---|---|
interface |
FXWritableTableFormat<E> |
Modifier and Type | Class and Description |
---|---|
class |
DefaultFXTableFormat<E>
Defines a read-only
FXTableFormat . |
class |
DefaultFXWritableTableFormat<E>
Defines an editable
FXTableFormat . |
Modifier and Type | Method and Description |
---|---|
FXTableFormat<? super E> |
DefaultFXTableViewModel.getFormat() |
FXTableFormat<? super E> |
FXTableViewModel.getFormat() |
Constructor and Description |
---|
DefaultFXTableViewModel(javafx.collections.ObservableList<E> source,
FXTableFormat<? super E> format) |