java.lang.Object
com._1c.g5.v8.dt.common.databinding.observable.Observables

public class Observables extends Object
Contains static methods to operate on or return Observables.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    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 given list 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 given list 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 given list.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Observables

      public Observables()
  • Method Details

    • 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 given list.
      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 given list 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 given list is not empty.
      Parameters:
      list - the observable's list
      Returns:
      an observable value indicating the list is not empty