Package org.eclipse.dltk.core.search.index

Examples of org.eclipse.dltk.core.search.index.Index.queryDocumentNames()


    System.out.println("===== Index Locations ====\n" + im.indexLocations + "\n");
   
    im.waitUntilReady();
   
    // And then check using
    String[] docNames = idx.queryDocumentNames(null); // To check all documents in this index
    assertNotNull(docNames);
    System.out.println("===== Index docs ====\n" + StringUtil.collToString(docNames, "\n") );
   
    System.out.println("===== Query: Type Decl, * ====");
    debugPrintCategory(idx, IIndexConstants.TYPE_DECL);
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.