EditEvent

scalafx.scene.control.TreeView.EditEvent
See theEditEvent companion object
class EditEvent[T](val delegate: EditEvent[T]) extends Event, SFXDelegate[EditEvent[T]]

Attributes

Companion
object
Graph
Supertypes
class Event
trait SFXDelegate[EditEvent[T]]
class Object
trait Matchable
class Any

Members list

Value members

Constructors

def this(source: TreeView[T], eventType: EventType[_ <: EditEvent[T]], treeItem: TreeItem[T], oldValue: T, newValue: T)

Creates a new EditEvent instance to represent an edit event.

Creates a new EditEvent instance to represent an edit event.

Attributes

Concrete methods

def newValue: T

Returns the new value input into the TreeItem by the end user.

Returns the new value input into the TreeItem by the end user.

Attributes

def oldValue: T

Returns the old value that existed in the TreeItem prior to the current edit event.

Returns the old value that existed in the TreeItem prior to the current edit event.

Attributes

override def source: TreeView[T]

Returns the TreeView upon which the edit took place.

Returns the TreeView upon which the edit took place.

Attributes

Definition Classes
def treeItem: TreeItem[T]

Returns the TreeItem upon which the edit took place.

Returns the TreeItem upon which the edit took place.

Attributes

Inherited methods

def consume(): Unit

Marks this Event as consumed. This stops its further propagation.

Marks this Event as consumed. This stops its further propagation.

Attributes

Inherited from:
Event

Indicates whether this Event has been consumed by any filter or handler.

Indicates whether this Event has been consumed by any filter or handler.

Attributes

Inherited from:
Event
def copyFor(newSource: AnyRef, newTarget: EventTarget): Event

Creates and returns a copy of this event with the specified event source and target.

Creates and returns a copy of this event with the specified event source and target.

Attributes

Inherited from:
Event
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
def eventType: EventType[_ <: Event]

Gets the event type of this event.

Gets the event type of this event.

Attributes

Inherited from:
Event
override def hashCode: Int

Attributes

Returns

The delegate hashcode

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate
def target: EventTarget

Returns the event target of this event.

Returns the event target of this event.

Attributes

Inherited from:
Event
override def toString: String

Attributes

Returns

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

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate

Concrete fields

override val delegate: EditEvent[T]

JavaFX object to be wrapped.

JavaFX object to be wrapped.

Attributes