O - the typepublic interface PropertyListCellFaytory<O>
extends javafx.util.Callback<javafx.scene.control.ListView<O>,javafx.scene.control.ListCell<O>>
| Modifier and Type | Method and Description |
|---|---|
static <O> javafx.scene.control.ListCell<O> |
textCell(IValueProperty textProperty)
Create a text cell who sets the
Labeled.textProperty() to the
property value |
static <O> javafx.scene.control.ListCell<O> |
textCell(java.lang.String template,
java.util.function.BiFunction<IValueProperty,java.lang.Object,java.lang.Object> converter,
IValueProperty... textProperties)
Create a text cell who sets the
Labeled.textProperty() to the value
of the properties formatted using the provided template using
MessageFormat |
static <O> javafx.scene.control.ListCell<O> |
textCell(java.lang.String template,
IValueProperty... textProperties)
Create a text cell who sets the
Labeled.textProperty() to the value
of the properties formatted using the provided template using
MessageFormat |
static <O> PropertyListCellFaytory<O> |
textFactory(IValueProperty textProperty)
Create a factory who uses the given property as the cells text content
|
static <O> PropertyListCellFaytory<O> |
textFactory(java.lang.String template,
java.util.function.BiFunction<IValueProperty,java.lang.Object,java.lang.Object> converter,
IValueProperty... textProperties)
Create a factory who uses the given properties and the template as cells
text content
|
static <O> PropertyListCellFaytory<O> |
textFactory(java.lang.String template,
IValueProperty... textProperties)
Create a factory who uses the given properties and the template as cells
text content
|
static <O> PropertyListCellFaytory<O> textFactory(IValueProperty textProperty)
O - the typetextProperty - the propertytextCell(IValueProperty)static <O> PropertyListCellFaytory<O> textFactory(java.lang.String template, IValueProperty... textProperties)
O - the typetemplate - the templatetextProperties - the propertiesstatic <O> PropertyListCellFaytory<O> textFactory(java.lang.String template, java.util.function.BiFunction<IValueProperty,java.lang.Object,java.lang.Object> converter, IValueProperty... textProperties)
O - the typetemplate - the templatetextProperties - the propertiesconverter - the value converterstatic <O> javafx.scene.control.ListCell<O> textCell(IValueProperty textProperty)
Labeled.textProperty() to the
property valueO - the typetextProperty - the text propertystatic <O> javafx.scene.control.ListCell<O> textCell(java.lang.String template,
java.util.function.BiFunction<IValueProperty,java.lang.Object,java.lang.Object> converter,
IValueProperty... textProperties)
Labeled.textProperty() to the value
of the properties formatted using the provided template using
MessageFormatO - the typetemplate - the templatetextProperties - the propertiesconverter - the converter to the valuestatic <O> javafx.scene.control.ListCell<O> textCell(java.lang.String template,
IValueProperty... textProperties)
Labeled.textProperty() to the value
of the properties formatted using the provided template using
MessageFormatO - the typetemplate - the templatetextProperties - the properties