Spec-Zone.ru › OpenJavaFX 24

Класс SetBinding<E>

java.lang.Object
javafx.beans.binding.SetExpression<E>
javafx.beans.binding.SetBinding<E>
Type Parameters:
E — тип элементов Set
Все реализованные интерфейсы:
Iterable<E>, Collection<E>, Set<E>, Binding<ObservableSet<E>>, Observable, ObservableObjectValue<ObservableSet<E>>, ObservableSetValue<E>, ObservableValue<ObservableSet<E>>, ObservableSet<E>
public abstract class SetBinding<E> extends SetExpression<E> implements Binding<ObservableSet<E>>
Базовый класс, предоставляющий большую часть функциональности, необходимой для реализации связывания Binding для ObservableSet.

SetBinding использует простую схему проверки на обновление. Расширяемый класс может регистрировать зависимости, вызывая bind(Observable...). Если одна из зарегистрированных зависимостей становится недействительной, это SetBinding помечается как недействительное. С помощью unbind(Observable...) можно прекратить отслеживание зависимостей.

Для предоставления конкретной реализации этого класса необходимо реализовать метод computeValue() для расчета значения этого связывания на основе текущего состояния зависимостей. Он вызывается при обращении к get() для недействительного связывания.

Смотрите DoubleBinding для примера расширения этого базового класса.

Since:
JavaFX 2.1
См. также:
  • Binding
  • SetExpression

Краткое описание свойств

Тип Свойство Описание
ReadOnlyBooleanProperty empty
Логическое свойство, которое равно true, если множество пустое.
ReadOnlyIntegerProperty size
Целочисленное свойство, представляющее размер множества.

Краткое описание конструкторов

Конструктор Описание
SetBinding()
Создаёт стандартное SetBinding.

Краткое описание методов

Модификатор и тип Метод Описание
void addListener(InvalidationListener listener)
Добавляет InvalidationListener, который будет уведомлен всякий раз, когда Observable становится недействительным.
void addListener(ChangeListener<? super ObservableSet<E>> listener)
Добавляет ChangeListener, который будет уведомлен всякий раз, когда значение ObservableValue изменяется.
void addListener(SetChangeListener<? super E> listener)
Добавить слушатель в это наблюдаемое множество.
protected final void bind(Observable... dependencies)
Начать отслеживание изменений зависимостей.
protected abstract ObservableSet<E> computeValue()
Вычисляет текущее значение этого связывания.
void dispose()
Стандартная пустая реализация dispose().
ReadOnlyBooleanProperty emptyProperty()
Логическое свойство, которое равно true, если множество пустое.
final ObservableSet<E> get()
Возвращает результат вызова computeValue().
ObservableList<?> getDependencies()
Стандартная реализация getDependencies(), возвращающая пустой ObservableList.
final void invalidate()
Пометить связывание как недействительное.
final boolean isValid()
Проверяет, является ли связывание действительным.
protected void onInvalidating()
Метод onInvalidating() может быть переопределен расширяемыми классами для реакции, если это связывание становится недействительным.
void removeListener(InvalidationListener listener)
Удаляет указанного слушателя из списка слушателей, которые уведомляются всякий раз, когда значение Observable становится недействительным.
void removeListener(ChangeListener<? super ObservableSet<E>> listener)
Удаляет указанного слушателя из списка слушателей, которые уведомляются всякий раз, когда значение ObservableValue изменяется.
void removeListener(SetChangeListener<? super E> listener)
Попытка удалить слушателя из этого наблюдаемого множества.
ReadOnlyIntegerProperty sizeProperty()
Целочисленное свойство, представляющее размер множества.
String toString()
Возвращает строковое представление этого объекта SetBinding.
protected final void unbind(Observable... dependencies)
Прекратить отслеживание изменений зависимостей.

Методы, объявленные в классе javafx.beans.binding.SetExpression

add, addAll, asString, clear, contains, containsAll, getSize, getValue, isEmpty, isEqualTo, isNotEqualTo, isNotNull, isNull, iterator, remove, removeAll, retainAll, setExpression, size, toArray, toArray

Методы, объявленные в классе java.lang.Object

clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Методы, объявленные в интерфейсе java.util.Collection

parallelStream, removeIf, stream, toArray

Методы, объявленные в интерфейсе java.lang.Iterable

forEach

Методы, объявленные в интерфейсе javafx.beans.Observable

subscribe

Методы, объявленные в интерфейсе javafx.beans.value.ObservableValue

flatMap, getValue, map, orElse, subscribe, subscribe, when

Методы, объявленные в интерфейсе java.util.Set

equals, hashCode, spliterator

Подробное описание полей

size

public ReadOnlyIntegerProperty sizeProperty
Specified by:
sizeProperty in class SetExpression<E>
Returns:
the property
See Also:
  • sizeProperty()

empty

public ReadOnlyBooleanProperty emptyProperty
Specified by:
emptyProperty in class SetExpression<E>
Returns:
the ReadOnlyBooleanProperty
See Also:
  • emptyProperty()

Краткое описание конструкторов

SetBinding

public SetBinding()
Creates a default SetBinding.

Краткое описание методов

sizeProperty

public ReadOnlyIntegerProperty sizeProperty()
Description copied from class: SetExpression
An integer property that represents the size of the set.
Specified by:
sizeProperty in class SetExpression<E>
Returns:
the size property

emptyProperty

public ReadOnlyBooleanProperty emptyProperty()
Description copied from class: SetExpression
A boolean property that is true, if the set is empty.
Specified by:
emptyProperty in class SetExpression<E>
Returns:
the empty property

addListener

public void addListener(InvalidationListener listener)
Description copied from interface: Observable
Adds an InvalidationListener which will be notified whenever the Observable becomes invalid. If the same listener is added more than once, then it will be notified more than once. That is, no check is made to ensure uniqueness.

Note that the same actual InvalidationListener instance may be safely registered for different Observables.

The Observable stores a strong reference to the listener which will prevent the listener from being garbage collected and may result in a memory leak. It is recommended to either unregister a listener by calling removeListener after use or to use an instance of WeakInvalidationListener avoid this situation.

Specified by:
addListener in interface Observable
Parameters:
listener - The listener to register
See Also:
  • Observable.removeListener(InvalidationListener)

removeListener

public void removeListener(InvalidationListener listener)
Description copied from interface: Observable
Removes the given listener from the list of listeners, that are notified whenever the value of the Observable becomes invalid.

If the given listener has not been previously registered (i.e. it was never added) then this method call is a no-op. If it had been previously added then it will be removed. If it had been added more than once, then only the first occurrence will be removed.

Specified by:
removeListener in interface Observable
Parameters:
listener - The listener to remove
See Also:
  • Observable.addListener(InvalidationListener)

addListener

public void addListener(ChangeListener<? super ObservableSet<E>> listener)
Description copied from interface: ObservableValue
Adds a ChangeListener which will be notified whenever the value of the ObservableValue changes. If the same listener is added more than once, then it will be notified more than once. That is, no check is made to ensure uniqueness.

Note that the same actual ChangeListener instance may be safely registered for different ObservableValues.

The ObservableValue stores a strong reference to the listener which will prevent the listener from being garbage collected and may result in a memory leak. It is recommended to either unregister a listener by calling removeListener after use or to use an instance of WeakChangeListener avoid this situation.

Specified by:
addListener in interface ObservableValue<E>
Parameters:
listener - The listener to register
See Also:
  • ObservableValue.removeListener(ChangeListener)

removeListener

public void removeListener(ChangeListener<? super ObservableSet<E>> listener)
Description copied from interface: ObservableValue
Removes the given listener from the list of listeners that are notified whenever the value of the ObservableValue changes.

If the given listener has not been previously registered (i.e. it was never added) then this method call is a no-op. If it had been previously added then it will be removed. If it had been added more than once, then only the first occurrence will be removed.

Specified by:
removeListener in interface ObservableValue<E>
Parameters:
listener - The listener to remove
See Also:
  • ObservableValue.addListener(ChangeListener)

addListener

public void addListener(SetChangeListener<? super E> listener)
Description copied from interface: ObservableSet
Add a listener to this observable set.
Specified by:
addListener in interface ObservableSet<E>
Parameters:
listener - the listener for listening to the set changes

removeListener

public void removeListener(SetChangeListener<? super E> listener)
Description copied from interface: ObservableSet
Tries to removed a listener from this observable set. If the listener is not attached to this list, nothing happens.
Specified by:
removeListener in interface ObservableSet<E>
Parameters:
listener - a listener to remove

bind

protected final void bind(Observable... dependencies)
Start observing the dependencies for changes. If the value of one of the dependencies changes, the binding is marked as invalid.
Parameters:
dependencies - the dependencies to observe

unbind

protected final void unbind(Observable... dependencies)
Stop observing the dependencies for changes.
Parameters:
dependencies - the dependencies to stop observing

dispose

public void dispose()
A default implementation of dispose() that is empty.
Specified by:
dispose in interface Binding<E>

getDependencies

public ObservableList<?> getDependencies()
A default implementation of getDependencies() that returns an empty ObservableList.
Specified by:
getDependencies in interface Binding<E>
Returns:
an empty ObservableList

get

public final ObservableSet<E> get()
Returns the result of computeValue(). The method computeValue() is only called if the binding is invalid. The result is cached and returned if the binding did not become invalid since the last call of get().
Specified by:
get in interface ObservableObjectValue<E>
Returns:
the current value

onInvalidating

protected void onInvalidating()
Метод onInvalidating() может быть переопределён производными классами для реакции на то, что данная привязка становится недействительной. По умолчанию реализация пустая.

invalidate

public final void invalidate()
Описание скопировано из интерфейса: Binding
Пометить привязку как недействительную. Это заставляет пересчитать значение Binding в следующий раз, когда оно запрашивается.
Specified by:
invalidate в интерфейсе Binding<E>

isValid

public final boolean isValid()
Описание скопировано из интерфейса: Binding
Проверяет, является ли привязка действительной.
Specified by:
isValid в интерфейсе Binding<E>
Returns:
true, если Binding действительна, false в противном случае

computeValue

protected abstract ObservableSet<E> computeValue()
Вычисляет текущее значение этой привязки.

Классы, расширяющие SetBinding, должны предоставить реализацию computeValue.

Returns:
текущее значение

toString

public String toString()
Возвращает строковое представление этого объекта SetBinding.
Overrides:
toString в классе Object
Returns:
строковое представление этого объекта SetBinding.

Отправить отчет об ошибке или предложить улучшение
Авторские права © 2008, 2025, Oracle и/или его аффилированные лица. Все права защищены.

© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API