Change

scalafx.collections.ObservableArray.Change
case class Change(sizeChanged: Boolean, start: Int, end: Int)

Indicates a change in an ObservableArray. It is a simpler version of JavaFX's ArrayChangeListener[T].

Value parameters

end

Index of first element in the array unaffected by the change. This value is exclusive of the change and indicates the first unchanged element after the modification, or the end of the array. Note that end may be less than start.

sizeChanged

true if the size of the ObservableArray was changed; false otherwise.

start

Index of first element in the array affected by the change.

Attributes

Constructor

Create new instance describing the change detected.

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product