Class Observables


  • public class Observables
    extends Object
    Contains static methods to operate on or return Observables.
    • 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 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.
    • Constructor Detail

      • Observables

        public Observables()
    • 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 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