Uses of Interface
org.eclipse.core.resources.IContainer

Packages that use IContainer
org.eclipse.core.internal.localstore   
org.eclipse.core.internal.resources   
org.eclipse.core.internal.resources.mapping   
org.eclipse.core.resources Provides basic support for managing a workspace and its resources. 
org.eclipse.core.resources.mapping Provides APIs for integrating application models with the workspace 
org.eclipse.core.tests.resources   
org.eclipse.jdt.internal.core.builder   
org.eclipse.jdt.internal.core.search.indexing   
 

Uses of IContainer in org.eclipse.core.internal.localstore
 

Methods in org.eclipse.core.internal.localstore that return IContainer
 IContainer FileSystemResourceManager.containerForLocation(org.eclipse.core.runtime.IPath location)
          Returns a container for the given file system location or null if there is no mapping for this path.
 

Uses of IContainer in org.eclipse.core.internal.resources
 

Classes in org.eclipse.core.internal.resources that implement IContainer
 class Container
           
 class Folder
           
 class Project
           
 class WorkspaceRoot
           
 

Methods in org.eclipse.core.internal.resources that return IContainer
 IContainer[] WorkspaceRoot.findContainersForLocation(org.eclipse.core.runtime.IPath location)
          Deprecated.  
 IContainer[] WorkspaceRoot.findContainersForLocationURI(java.net.URI location)
           
 IContainer[] WorkspaceRoot.findContainersForLocationURI(java.net.URI location, int memberFlags)
           
 IContainer WorkspaceRoot.getContainerForLocation(org.eclipse.core.runtime.IPath location)
           
 IContainer WorkspaceRoot.getParent()
           
 IContainer Resource.getParent()
           
 IContainer Project.getParent()
           
 

Uses of IContainer in org.eclipse.core.internal.resources.mapping
 

Methods in org.eclipse.core.internal.resources.mapping that return IContainer
 IContainer ShallowContainer.getResource()
           
 

Constructors in org.eclipse.core.internal.resources.mapping with parameters of type IContainer
ShallowContainer(IContainer container)
           
 

Uses of IContainer in org.eclipse.core.resources
 

Subinterfaces of IContainer in org.eclipse.core.resources
 interface IFolder
          Folders may be leaf or non-leaf resources and may contain files and/or other folders.
 interface IProject
          A project is a type of resource which groups resources into buildable, reusable units.
 interface IWorkspaceRoot
          A root resource represents the top of the resource hierarchy in a workspace.
 

Methods in org.eclipse.core.resources that return IContainer
 IContainer[] IWorkspaceRoot.findContainersForLocation(org.eclipse.core.runtime.IPath location)
          Deprecated. use IWorkspaceRoot.findContainersForLocationURI(URI) instead
 IContainer[] IWorkspaceRoot.findContainersForLocationURI(java.net.URI location)
          Returns the handles to all the resources (workspace root, project, folder) in the workspace which are mapped to the given URI.
 IContainer[] IWorkspaceRoot.findContainersForLocationURI(java.net.URI location, int memberFlags)
          Returns the handles to all the resources (workspace root, project, folder) in the workspace which are mapped to the given URI.
 IContainer IWorkspaceRoot.getContainerForLocation(org.eclipse.core.runtime.IPath location)
          Returns a handle to the workspace root, project or folder which is mapped to the given path in the local file system, or null if none.
 IContainer IResource.getParent()
          Returns the resource which is the parent of this resource, or null if it has no parent (that is, this resource is the workspace root).
 

Uses of IContainer in org.eclipse.core.resources.mapping
 

Methods in org.eclipse.core.resources.mapping with parameters of type IContainer
 IResource[] RemoteResourceMappingContext.fetchBaseMembers(IContainer container, org.eclipse.core.runtime.IProgressMonitor monitor)
          Returns the members of the base resource corresponding to the given container.
abstract  IResource[] RemoteResourceMappingContext.fetchMembers(IContainer container, org.eclipse.core.runtime.IProgressMonitor monitor)
          Returns the combined members of the base and remote resources corresponding to the given container.
 IResource[] RemoteResourceMappingContext.fetchRemoteMembers(IContainer container, org.eclipse.core.runtime.IProgressMonitor monitor)
          Returns the members of the remote resource corresponding to the given container.
 

Uses of IContainer in org.eclipse.core.tests.resources
 

Methods in org.eclipse.core.tests.resources with parameters of type IContainer
 IResource[] ResourceTest.buildResources(IContainer root, java.lang.String[] hierarchy)
          Return a collection of resources for the given hierarchy at the given root.
 boolean IFileTest.existsAndOpen(IContainer container)
          Returns true if the given container exists, and is open if applicable.
 void IFileTest.generateInterestingFiles(IContainer container)
          Creates some interesting files in the specified container.
 

Uses of IContainer in org.eclipse.jdt.internal.core.builder
 

Methods in org.eclipse.jdt.internal.core.builder with parameters of type IContainer
static ClasspathLocation ClasspathLocation.forBinaryFolder(IContainer binaryFolder, boolean isOutputFolder, AccessRuleSet accessRuleSet)
           
 

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

Constructors in org.eclipse.jdt.internal.core.search.indexing with parameters of type IContainer
IndexBinaryFolder(IContainer folder, IndexManager manager)