Uses of Class
org.eclipse.jdt.internal.core.index.IndexLocation

Packages that use IndexLocation
org.eclipse.jdt.internal.core.index   
org.eclipse.jdt.internal.core.search   
org.eclipse.jdt.internal.core.search.indexing   
 

Uses of IndexLocation in org.eclipse.jdt.internal.core.index
 

Subclasses of IndexLocation in org.eclipse.jdt.internal.core.index
 class FileIndexLocation
           
 class JarIndexLocation
           
 

Methods in org.eclipse.jdt.internal.core.index that return IndexLocation
static IndexLocation IndexLocation.createIndexLocation(java.net.URL url)
           
 IndexLocation Index.getIndexLocation()
           
 

Constructors in org.eclipse.jdt.internal.core.index with parameters of type IndexLocation
Index(IndexLocation location, java.lang.String containerPath, boolean reuseExistingFile)
           
 

Uses of IndexLocation in org.eclipse.jdt.internal.core.search
 

Methods in org.eclipse.jdt.internal.core.search that return IndexLocation
 IndexLocation[] IndexSelector.getIndexLocations()
           
 IndexLocation[] JavaSearchParticipant.selectIndexURLs(SearchPattern pattern, IJavaSearchScope scope)
           
 

Uses of IndexLocation in org.eclipse.jdt.internal.core.search.indexing
 

Methods in org.eclipse.jdt.internal.core.search.indexing that return IndexLocation
 IndexLocation IndexManager.computeIndexLocation(IPath containerPath)
           
 

Methods in org.eclipse.jdt.internal.core.search.indexing with parameters of type IndexLocation
 void IndexManager.ensureIndexExists(IndexLocation indexLocation, IPath containerPath)
           
 Index IndexManager.getIndex(IndexLocation indexLocation)
          Returns the index for a given index location
 Index IndexManager.getIndex(IPath containerPath, IndexLocation indexLocation, boolean reuseExistingFile, boolean createIfMissing)
          Returns the index for a given project, according to the following algorithm: - if index is already in memory: answers this one back - if (reuseExistingFile) then read it and return this index and record it in memory - if (createIfMissing) then create a new empty index and record it in memory Warning: Does not check whether index is consistent (not being used)
 Index[] IndexManager.getIndexes(IndexLocation[] locations, IProgressMonitor progressMonitor)
          Returns all the existing indexes for a list of index locations.
 void IndexManager.scheduleDocumentIndexing(SearchDocument searchDocument, IPath container, IndexLocation indexLocation, SearchParticipant searchParticipant)