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

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


   * @return an empty observable list
   * @since 1.1
   */
  public static IObservableList emptyObservableList(Realm realm,
      Object elementType) {
    return new EmptyObservableList(realm, elementType);
  }
View Full Code Here


   * after it has been disposed of and can be disposed of multiple times.
   *
   * @return an empty observable list.
   */
  public static IObservableList emptyObservableList() {
    return new EmptyObservableList(Realm.getDefault());
  }
View Full Code Here

   *
   * @param realm
   * @return an empty observable list.
   */
  public static IObservableList emptyObservableList(Realm realm) {
    return new EmptyObservableList(realm);
  }
View Full Code Here

TOP

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

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.