Package javafx.beans.binding
Class ObjectExpression<T>
java.lang.Object
javafx.beans.binding.ObjectExpression<T>
- All Implemented Interfaces:
Observable,ObservableObjectValue<T>,ObservableValue<T>
- Direct Known Subclasses:
ReadOnlyObjectProperty
A
ObjectExpression is a
ObservableObjectValue plus additional convenience
methods to generate bindings in a fluent style.
A concrete sub-class of ObjectExpression has to implement the method
ObservableObjectValue.get(), which provides the
actual value of this expression.
- Since:
- JavaFX 2.0
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface javafx.beans.Observable
addListener, removeListenerMethods inherited from interface javafx.beans.value.ObservableObjectValue
getMethods inherited from interface javafx.beans.value.ObservableValue
addListener, removeListener
-
Constructor Details
-
ObjectExpression
public ObjectExpression()
-
-
Method Details
-
getValue
Description copied from interface:ObservableValueReturns the current value of thisObservableValue- Specified by:
getValuein interfaceObservableValue<T>- Returns:
- The current value
-