Class Observables
- java.lang.Object
-
- com._1c.g5.v8.dt.common.databinding.observable.Observables
-
public class Observables extends Object
Contains static methods to operate on or returnObservables
.
-
-
Constructor Summary
Constructors Constructor Description Observables()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static org.eclipse.core.databinding.observable.value.IObservableValue
observeListIsEmpty(org.eclipse.core.databinding.observable.list.IObservableList list)
Returns an observable value indicating the givenlist
is empty.static org.eclipse.core.databinding.observable.value.IObservableValue
observeListIsNotEmpty(org.eclipse.core.databinding.observable.list.IObservableList list)
Returns an observable value indicating the givenlist
is not empty.static org.eclipse.core.databinding.observable.value.IObservableValue
observeListSize(org.eclipse.core.databinding.observable.list.IObservableList list)
Returns an observable value with size of the givenlist
.
-
-
-
Method Detail
-
observeListSize
public static org.eclipse.core.databinding.observable.value.IObservableValue observeListSize(org.eclipse.core.databinding.observable.list.IObservableList list)
Returns an observable value with size of the givenlist
.- Parameters:
list
- the observable's list- Returns:
- an observable value with size of list.
-
observeListIsEmpty
public static org.eclipse.core.databinding.observable.value.IObservableValue observeListIsEmpty(org.eclipse.core.databinding.observable.list.IObservableList list)
Returns an observable value indicating the givenlist
is empty.- Parameters:
list
- the observable's list- Returns:
- an observable value indicating the list is empty
-
observeListIsNotEmpty
public static org.eclipse.core.databinding.observable.value.IObservableValue observeListIsNotEmpty(org.eclipse.core.databinding.observable.list.IObservableList list)
Returns an observable value indicating the givenlist
is not empty.- Parameters:
list
- the observable's list- Returns:
- an observable value indicating the list is not empty
-
-