UpdatableCell

scalafx.scene.control.cell.`package`.UpdatableCell
trait UpdatableCell[C <: Cell[T], T] extends SFXDelegate[C]

Cells which delegate contains the method updateItem(item: Any, empty: Boolean): Unit.

Type parameters

C

Derivated type from JavaFX Cell

T

The type of the elements contained within the inner element inside the Cell.

Attributes

Graph
Supertypes
trait SFXDelegate[C]
class Object
trait Matchable
class Any
Known subtypes

Members list

Type members

Types

type Updated = { def updateItem(item: Any, empty: Boolean): Unit; }

Types that contains the method updateItem(item: Any, empty: Boolean): Unit

Types that contains the method updateItem(item: Any, empty: Boolean): Unit

Attributes

Value members

Concrete methods

def updateItem(item: T, empty: Boolean): Unit

Updates the item associated with this Cell.

Updates the item associated with this Cell.

Value parameters

empty

whether or not this cell represents data from the list. If it is empty, then it does not represent any domain data, but is a cell being used to render an "empty" row.

item

The new item for the cell

Attributes

Inherited methods

def delegate: D

JavaFX object to be wrapped.

JavaFX object to be wrapped.

Attributes

Inherited from:
SFXDelegate
override def equals(ref: Any): Boolean

Verifies if a object is equals to this delegate.

Verifies if a object is equals to this delegate.

Value parameters

ref

Object to be compared.

Attributes

Returns

if the other object is equals to this delegate or not.

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate
override def hashCode: Int

Attributes

Returns

The delegate hashcode

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate
override def toString: String

Attributes

Returns

Returns the original delegate's toString() adding a [SFX] prefix.

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate