scalafx.collections.transformation

Type members

Classlikes

Companion
class
class FilteredBuffer[E](val delegate: FilteredList[E]) extends TransformationBuffer[E, E] with SFXDelegate[FilteredList[E]]

Wraps a JavaFX FilteredList.

Wraps a JavaFX FilteredList.

Companion
object
object SortedBuffer
Companion
class
class SortedBuffer[E](val delegate: SortedList[E]) extends TransformationBuffer[E, E] with SFXDelegate[SortedList[E]]

Wraps a JavaFX SortedList.

Wraps a JavaFX SortedList.

Companion
object
Companion
class
abstract class TransformationBuffer[E, F](val delegate: TransformationList[E, F]) extends ObservableBufferBase[E] with SFXDelegate[TransformationList[E, F]]

A base class for all buffers that wraps other buffers in a way that changes the buffer's elements, order, size or generally it's structure. If the source list is observable, a listener is automatically added to it and the events are delegated.

A base class for all buffers that wraps other buffers in a way that changes the buffer's elements, order, size or generally it's structure. If the source list is observable, a listener is automatically added to it and the events are delegated.

Wraps a JavaFX TransformationList.

Type Params
E
  • the type parameter of this buffer.
F
  • the upper bound of the type of the source buffer.
Companion
object

Contains implicit methods to convert from javafx.collections.transformation Classes to their ScalaFX counterparts.

Contains implicit methods to convert from javafx.collections.transformation Classes to their ScalaFX counterparts.

Companion
object