Package org.eclipse.core.internal.databinding.validation

Examples of org.eclipse.core.internal.databinding.validation.ValidatedObservableList


   * @return an IObservableValue which stays in sync with the given target
   *         observable only with the validation status is valid.
   */
  public IObservableList observeValidatedList(IObservableList target) {
    checkObservable(target);
    return new ValidatedObservableList(target, getValidationStatus());
  }
View Full Code Here

TOP

Related Classes of org.eclipse.core.internal.databinding.validation.ValidatedObservableList

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.