Examples of validateState()


Examples of org.eclipse.ui.texteditor.IDocumentProviderExtension.validateState()

   * @see org.eclipse.ui.texteditor.IDocumentProviderExtension#validateState(java.lang.Object, java.lang.Object)
   */
  public void validateState(Object element, Object computationContext) throws CoreException {
    if (fParentProvider instanceof IDocumentProviderExtension) {
      IDocumentProviderExtension extension= (IDocumentProviderExtension)fParentProvider;
      extension.validateState(element, computationContext);
    }
  }

  /*
   * @see org.eclipse.ui.texteditor.IDocumentProviderExtension#isStateValidated(java.lang.Object)
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.