1 11 package org.eclipse.jdt.core.search; 12 13 import org.eclipse.core.runtime.IPath; 14 import org.eclipse.jdt.core.IJavaElement; 15 16 24 public interface IJavaSearchScope { 25 30 String JAR_FILE_ENTRY_SEPARATOR = "|"; 35 int SOURCES = 1; 36 40 int APPLICATION_LIBRARIES = 2; 41 45 int SYSTEM_LIBRARIES = 4; 46 50 int REFERENCED_PROJECTS = 8; 51 62 public boolean encloses(String resourcePath); 63 69 public boolean encloses(IJavaElement element); 70 89 IPath[] enclosingProjectsAndJars(); 90 99 boolean includesBinaries(); 100 109 boolean includesClasspaths(); 110 119 public void setIncludesBinaries(boolean includesBinaries); 120 129 public void setIncludesClasspaths(boolean includesClasspaths); 130 } 131 | Popular Tags |