Package org.eclipse.jdt.internal.core.search.indexing

Examples of org.eclipse.jdt.internal.core.search.indexing.SourceIndexer


    // TODO must verify that the document + indexPath match, when this is not called from scheduleDocumentIndexing
    document.removeAllIndexEntries(); // in case the document was already indexed

    String documentPath = document.getPath();
    if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(documentPath)) {
      new SourceIndexer(document).indexDocument();
    } else if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(documentPath)) {
      new BinaryIndexer(document).indexDocument();
    }
  }
View Full Code Here


    // TODO must verify that the document + indexPath match, when this is not called from scheduleDocumentIndexing
    document.removeAllIndexEntries(); // in case the document was already indexed

    String documentPath = document.getPath();
    if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(documentPath)) {
      new SourceIndexer(document).indexDocument();
    } else if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(documentPath)) {
      new BinaryIndexer(document).indexDocument();
    }
  }
View Full Code Here

    // TODO must verify that the document + indexPath match, when this is not called from scheduleDocumentIndexing
    document.removeAllIndexEntries(); // in case the document was already indexed

    String documentPath = document.getPath();
    if (org.eclipse.jdt.internal.core.util.Util.isJavaLikeFileName(documentPath)) {
      this.sourceIndexer = new SourceIndexer(document);
      this.sourceIndexer.indexDocument();
    } else if (org.eclipse.jdt.internal.compiler.util.Util.isClassFileName(documentPath)) {
      new BinaryIndexer(document).indexDocument();
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.core.search.indexing.SourceIndexer

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.