Top Description Methods
javafx.beans.property

public Interface ReadOnlyProperty<T>

extends ObservableValue<T>
Known Direct Subinterfaces
javafx.beans.property.adapter.ReadOnlyJavaBeanProperty, javafx.beans.property.Property
Known Direct Implementers
javafx.beans.property.ReadOnlyStringProperty, javafx.beans.property.ReadOnlySetProperty, javafx.beans.property.ReadOnlyBooleanProperty, javafx.beans.property.ReadOnlyDoubleProperty, javafx.beans.property.ReadOnlyFloatProperty, javafx.beans.property.ReadOnlyIntegerProperty, javafx.beans.property.ReadOnlyListProperty, javafx.beans.property.ReadOnlyLongProperty, javafx.beans.property.ReadOnlyMapProperty, javafx.beans.property.ReadOnlyObjectProperty
Type Parameters
<T>
the type of the wrapped value
Imports
javafx.beans.value.ObservableValue

Generic interface that defines the methods common to all readable properties independent of their type.
Since
JavaFX 2.0

Method Summary

Modifier and TypeMethod and Description
public Object

Returns:

the containing Object or null
getBean
()

Returns the Object that contains this property.

public String

Returns:

the name or an empty String
getName
()

Returns the name of this property.

Inherited from javafx.beans.value.ObservableValue:
addListenerflatMapgetValuemaporElseremoveListenersubscribesubscribewhen

Method Detail

getBeanback to summary
public Object getBean()

Returns the Object that contains this property. If this property is not contained in an Object, null is returned.

Returns:Object

the containing Object or null

getNameback to summary
public String getName()

Returns the name of this property. If the property does not have a name, this method returns an empty String.

Returns:String

the name or an empty String