Package org.eclipse.core.internal.databinding.observable

Examples of org.eclipse.core.internal.databinding.observable.EmptyObservableSet


   * @return an empty observable set
   * @since 1.1
   */
  public static IObservableSet emptyObservableSet(Realm realm,
      Object elementType) {
    return new EmptyObservableSet(realm, elementType);
  }
View Full Code Here


   * it has been disposed of and can be disposed of multiple times.
   *
   * @return an empty observable set.
   */
  public static IObservableSet emptyObservableSet() {
    return new EmptyObservableSet(Realm.getDefault());
  }
View Full Code Here

   *
   * @param realm
   * @return an empty observable set.
   */
  public static IObservableSet emptyObservableSet(Realm realm) {
    return new EmptyObservableSet(realm);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.core.internal.databinding.observable.EmptyObservableSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.