Home
last modified time | relevance | path

Searched refs:rootPathToRawEntries (Results 1 – 3 of 3) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/search/
H A DJavaSearchScope.java148 Map rootPathToRawEntries = perProjectInfo.rootPathToRawEntries; in add() local
149 if (rootPathToRawEntries != null) { in add()
150 rawEntry = (IClasspathEntry) rootPathToRawEntries.get(entry.getPath()); in add()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/
H A DPackageFragmentRoot.java608 Map rootPathToRawEntries = project.getPerProjectInfo().rootPathToRawEntries; in getRawClasspathEntry() local
609 if (rootPathToRawEntries != null) { in getRawClasspathEntry()
610 rawEntry = (IClasspathEntry) rootPathToRawEntries.get(getPath()); in getRawClasspathEntry()
H A DJavaModelManager.java1274 …public Map<IPath, IClasspathEntry> rootPathToRawEntries; // reverse map from a package fragment ro… field in JavaModelManager.PerProjectInfo
1371 this.rootPathToRawEntries = newRootPathToRawEntries; in setClasspath()