Uses of Interface
org.eclipse.jdt.core.IClasspathContainer

Packages that use IClasspathContainer
org.eclipse.jdt.core   
org.eclipse.jdt.internal.core   
 

Uses of IClasspathContainer in org.eclipse.jdt.core
 

Methods in org.eclipse.jdt.core that return IClasspathContainer
static IClasspathContainer JavaCore.getClasspathContainer(IPath containerPath, IJavaProject project)
          Answers the project specific value for a given classpath container.
 IClasspathContainer ClasspathContainerInitializer.getFailureContainer(IPath containerPath, IJavaProject project)
          Returns a classpath container that is used after this initializer failed to bind a classpath container to a IClasspathContainer for the given project.
 

Methods in org.eclipse.jdt.core with parameters of type IClasspathContainer
 void ClasspathContainerInitializer.requestClasspathContainerUpdate(IPath containerPath, IJavaProject project, IClasspathContainer containerSuggestion)
          Request a registered container definition to be updated according to a container suggestion.
static void JavaCore.setClasspathContainer(IPath containerPath, IJavaProject[] affectedProjects, IClasspathContainer[] respectiveContainers, IProgressMonitor monitor)
          Bind a container reference path to some actual containers (IClasspathContainer).
 

Uses of IClasspathContainer in org.eclipse.jdt.internal.core
 

Classes in org.eclipse.jdt.internal.core that implement IClasspathContainer
 class UserLibraryClasspathContainer
           
 

Fields in org.eclipse.jdt.internal.core declared as IClasspathContainer
static IClasspathContainer JavaModelManager.CONTAINER_INITIALIZATION_IN_PROGRESS
           
 

Methods in org.eclipse.jdt.internal.core that return IClasspathContainer
 IClasspathContainer JavaModelManager.containerBeingInitializedGet(IJavaProject project, IPath containerPath)
           
 IClasspathContainer JavaModelManager.containerBeingInitializedRemove(IJavaProject project, IPath containerPath)
           
 IClasspathContainer JavaModelManager.containerGet(IJavaProject project, IPath containerPath)
           
 IClasspathContainer JavaModelManager.containerGetDefaultToPreviousSession(IJavaProject project, IPath containerPath)
           
 IClasspathContainer JavaModelManager.getClasspathContainer(IPath containerPath, IJavaProject project)
           
 IClasspathContainer JavaModelManager.getPreviousSessionContainer(IPath containerPath, IJavaProject project)
          Returns a persisted container from previous session if any.
 

Methods in org.eclipse.jdt.internal.core with parameters of type IClasspathContainer
 void JavaModelManager.containerBeingInitializedPut(IJavaProject project, IPath containerPath, IClasspathContainer container)
           
 void JavaModelManager.containerPut(IJavaProject project, IPath containerPath, IClasspathContainer container)
           
 boolean JavaModelManager.containerPutIfInitializingWithSameEntries(IPath containerPath, IJavaProject[] projects, IClasspathContainer[] respectiveContainers)
           
 void UserLibraryClasspathContainerInitializer.requestClasspathContainerUpdate(IPath containerPath, IJavaProject project, IClasspathContainer containerSuggestion)
           
 

Constructors in org.eclipse.jdt.internal.core with parameters of type IClasspathContainer
SetContainerOperation(IPath containerPath, IJavaProject[] affectedProjects, IClasspathContainer[] respectiveContainers)