Package javafx.beans.property
Class SimpleListProperty<E>
java.lang.Object
javafx.beans.binding.ListExpression<E>
javafx.beans.property.ReadOnlyListProperty<E>
javafx.beans.property.ListProperty<E>
javafx.beans.property.ListPropertyBase<E>
javafx.beans.property.SimpleListProperty<E>
- Type Parameters:
E- the type of theListelements
- All Implemented Interfaces:
Iterable<E>,Collection<E>,List<E>,Observable,Property<ObservableList<E>>,ReadOnlyProperty<ObservableList<E>>,ObservableListValue<E>,ObservableObjectValue<ObservableList<E>>,ObservableValue<ObservableList<E>>,WritableListValue<E>,WritableObjectValue<ObservableList<E>>,WritableValue<ObservableList<E>>,ObservableList<E>
This class provides a full implementation of a
Property wrapping an
ObservableList.- Since:
- JavaFX 2.1
- See Also:
-
Property Summary
Properties inherited from class javafx.beans.property.ListPropertyBase
empty, size -
Constructor Summary
ConstructorsConstructorDescriptionThe constructor ofSimpleListPropertySimpleListProperty(Object bean, String name) The constructor ofSimpleListPropertySimpleListProperty(Object bean, String name, ObservableList<E> initialValue) The constructor ofSimpleListPropertySimpleListProperty(ObservableList<E> initialValue) The constructor ofSimpleListProperty -
Method Summary
Methods inherited from class javafx.beans.property.ListPropertyBase
addListener, addListener, addListener, bind, emptyProperty, fireValueChangedEvent, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, removeListener, set, sizeProperty, toString, unbindMethods inherited from class javafx.beans.property.ListProperty
bindBidirectional, setValue, unbindBidirectionalMethods inherited from class javafx.beans.property.ReadOnlyListProperty
equals, hashCodeMethods inherited from class javafx.beans.binding.ListExpression
add, add, addAll, addAll, addAll, clear, contains, containsAll, get, getSize, getValue, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, remove, removeAll, removeAll, retainAll, retainAll, set, setAll, setAll, size, subList, toArray, toArrayMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, removeIf, streamMethods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArrayMethods inherited from interface javafx.collections.ObservableList
addAll, filtered, remove, removeAll, retainAll, setAll, setAll, sortedMethods inherited from interface javafx.beans.value.ObservableValue
getValueMethods inherited from interface javafx.beans.value.WritableValue
getValue
-
Constructor Details
-
SimpleListProperty
public SimpleListProperty()The constructor ofSimpleListProperty -
SimpleListProperty
The constructor ofSimpleListProperty- Parameters:
initialValue- the initial value of the wrapped value
-
SimpleListProperty
The constructor ofSimpleListProperty- Parameters:
bean- the bean of thisSetPropertyname- the name of thisSetProperty
-
SimpleListProperty
The constructor ofSimpleListProperty- Parameters:
bean- the bean of thisListPropertyname- the name of thisListPropertyinitialValue- the initial value of the wrapped value
-
-
Method Details
-
getBean
Returns theObjectthat contains this property. If this property is not contained in anObject,nullis returned.- Returns:
- the containing
Objectornull
-
getName
Returns the name of this property. If the property does not have a name, this method returns an emptyString.- Returns:
- the name or an empty
String
-