Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbchilds2007-08-02 15:44:38 +0000
committerbchilds2007-08-02 15:44:38 +0000
commit239abe88de50ad4ca1046e98c5f88226c11c53ae (patch)
tree0fee88a3c69b8f8a8564f270d3e22621681abbad
parent547f4f676008333de4727adfb844866ae748be0d (diff)
downloadwebtools.sourceediting-239abe88de50ad4ca1046e98c5f88226c11c53ae.tar.gz
webtools.sourceediting-239abe88de50ad4ca1046e98c5f88226c11c53ae.tar.xz
webtools.sourceediting-239abe88de50ad4ca1046e98c5f88226c11c53ae.zip
- Fix to honor exclusion patterns in index searching.
- Some indexer cleanupups (stopped indexing an entire project at project root when no source folder defined, fix to prevent indexing a library folder two times)
-rw-r--r--bundles/org.eclipse.wst.jsdt.web.core/src/org/eclipse/wst/jsdt/web/core/internal/java/search/JsSearchScope.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.web.core/src/org/eclipse/wst/jsdt/web/core/internal/java/search/JsSearchScope.java b/bundles/org.eclipse.wst.jsdt.web.core/src/org/eclipse/wst/jsdt/web/core/internal/java/search/JsSearchScope.java
index f428ffcebb..f96077ba63 100644
--- a/bundles/org.eclipse.wst.jsdt.web.core/src/org/eclipse/wst/jsdt/web/core/internal/java/search/JsSearchScope.java
+++ b/bundles/org.eclipse.wst.jsdt.web.core/src/org/eclipse/wst/jsdt/web/core/internal/java/search/JsSearchScope.java
@@ -121,4 +121,14 @@ public class JsSearchScope implements IJavaSearchScope {
public void setIncludesClasspaths(boolean includesClasspaths) {
// do nothing
}
+
+ /* (non-Javadoc)
+ * @see org.eclipse.wst.jsdt.core.search.IJavaSearchScope#shouldExclude(java.lang.String, java.lang.String)
+ */
+ public boolean shouldExclude(String container, String resourceName) {
+ // TODO Auto-generated method stub
+ System.out.println("Unimplemented method:JsSearchScope.shouldExclude");
+ return false;
+ }
+
} \ No newline at end of file

Back to the top