1 11 package org.eclipse.core.resources; 12 13 import java.net.URI ; 14 import org.eclipse.core.runtime.*; 15 16 37 public interface IWorkspaceRoot extends IContainer, IAdaptable { 38 39 77 public void delete(boolean deleteContent, boolean force, IProgressMonitor monitor) throws CoreException; 78 79 100 public IContainer[] findContainersForLocation(IPath location); 101 102 122 public IContainer[] findContainersForLocationURI(URI location); 123 124 135 public IFile[] findFilesForLocation(IPath location); 136 137 147 public IFile[] findFilesForLocationURI(URI location); 148 149 178 public IContainer getContainerForLocation(IPath location); 179 180 202 public IFile getFileForLocation(IPath location); 203 204 221 public IProject getProject(String name); 222 223 230 public IProject[] getProjects(); 231 } 232 | Popular Tags |