Examples of UnmodifiableObservableValue


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

   * @since 1.1
   */
  public static IObservableValue unmodifiableObservableValue(
      IObservableValue value) {
    Assert.isNotNull(value, "Argument 'value' cannot be null"); //$NON-NLS-1$
    return new UnmodifiableObservableValue(value);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.