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

Packages that use IJavaModelStatus
org.eclipse.jdt.core The Java model is the set of classes that model the objects associated with creating, editing, and building a Java program. 
org.eclipse.jdt.internal.core   
 

Uses of IJavaModelStatus in org.eclipse.jdt.core
 

Methods in org.eclipse.jdt.core that return IJavaModelStatus
 IJavaModelStatus JavaModelException.getJavaModelStatus()
          Returns the Java model status object for this exception.
static IJavaModelStatus JavaConventions.validateClasspath(IJavaProject javaProject, IClasspathEntry[] rawClasspath, org.eclipse.core.runtime.IPath projectOutputLocation)
          Validate a given classpath and output location for a project, using the following rules: Classpath entries cannot collide with each other; that is, all entry paths must be unique.
static IJavaModelStatus JavaConventions.validateClasspathEntry(IJavaProject project, IClasspathEntry entry, boolean checkSourceAttachment)
          Returns a Java model status describing the problem related to this classpath entry if any, a status object with code IStatus.OK if the entry is fine (that is, if the given classpath entry denotes a valid element to be referenced onto a classpath).
 

Constructors in org.eclipse.jdt.core with parameters of type IJavaModelStatus
JavaModelException(IJavaModelStatus status)
          Creates a Java model exception for the given Java-specific status object.
 

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

Classes in org.eclipse.jdt.internal.core that implement IJavaModelStatus
 class JavaModelStatus
           
 

Fields in org.eclipse.jdt.internal.core declared as IJavaModelStatus
 IJavaModelStatus JavaModelManager.PerProjectInfo.rawClasspathStatus
           
 IJavaModelStatus JavaModelManager.PerProjectInfo.unresolvedEntryStatus
           
static IJavaModelStatus JavaModelStatus.VERIFIED_OK
          Singleton OK object
 

Methods in org.eclipse.jdt.internal.core that return IJavaModelStatus
static IJavaModelStatus JavaModelStatus.newMultiStatus(IJavaModelStatus[] children)
          Creates and returns a new IJavaModelStatus that is a a multi-status status.
static IJavaModelStatus ClasspathEntry.validateClasspath(IJavaProject javaProject, IClasspathEntry[] rawClasspath, org.eclipse.core.runtime.IPath projectOutputLocation)
          Validate a given classpath and output location for a project, using the following rules: Classpath entries cannot collide with each other; that is, all entry paths must be unique.
static IJavaModelStatus ClasspathEntry.validateClasspathEntry(IJavaProject project, IClasspathEntry entry, boolean checkSourceAttachment, boolean recurseInContainers)
          Returns a Java model status describing the problem related to this classpath entry if any, a status object with code IStatus.OK if the entry is fine (that is, if the given classpath entry denotes a valid element to be referenced onto a classpath).
 IJavaModelStatus CreatePackageDeclarationOperation.verify()
          Possible failures: NO_ELEMENTS_TO_PROCESS - no compilation unit was supplied to the operation INVALID_NAME - a name supplied to the operation was not a valid package declaration name.
 IJavaModelStatus CreateImportOperation.verify()
          Possible failures: NO_ELEMENTS_TO_PROCESS - the compilation unit supplied to the operation is null.
 IJavaModelStatus SortElementsOperation.verify()
          Possible failures: NO_ELEMENTS_TO_PROCESS - the compilation unit supplied to the operation is null.
 IJavaModelStatus CopyPackageFragmentRootOperation.verify()
           
 IJavaModelStatus CreateCompilationUnitOperation.verify()
          Possible failures: NO_ELEMENTS_TO_PROCESS - the package fragment supplied to the operation is null.
 IJavaModelStatus CreateTypeMemberOperation.verify()
          Possible failures: NO_ELEMENTS_TO_PROCESS - the parent element supplied to the operation is null.
 IJavaModelStatus CommitWorkingCopyOperation.verify()
          Possible failures: INVALID_ELEMENT_TYPES - the compilation unit supplied to this operation is not a working copy ELEMENT_NOT_PRESENT - the compilation unit the working copy is based on no longer exists.
 IJavaModelStatus CreateElementInCUOperation.verify()
          Possible failures: NO_ELEMENTS_TO_PROCESS - the compilation unit supplied to the operation is null.
 IJavaModelStatus SetClasspathOperation.verify()
           
 IJavaModelStatus CreatePackageFragmentOperation.verify()
          Possible failures: NO_ELEMENTS_TO_PROCESS - the root supplied to the operation is null.
 IJavaModelStatus CreateTypeHierarchyOperation.verify()
          Possible failures: NO_ELEMENTS_TO_PROCESS - at least one of a type or region must be provided to generate a type hierarchy.
 

Methods in org.eclipse.jdt.internal.core with parameters of type IJavaModelStatus
 void JavaProject.createClasspathProblemMarker(IJavaModelStatus status)
          Record a new marker denoting a classpath problem
static IJavaModelStatus JavaModelStatus.newMultiStatus(IJavaModelStatus[] children)
          Creates and returns a new IJavaModelStatus that is a a multi-status status.
 ClasspathChange JavaModelManager.PerProjectInfo.setClasspath(IClasspathEntry[] newRawClasspath, org.eclipse.core.runtime.IPath newOutputLocation, IJavaModelStatus newRawClasspathStatus, IClasspathEntry[] newResolvedClasspath, java.util.Map newRootPathToRawEntries, java.util.Map newRootPathToResolvedEntries, IJavaModelStatus newUnresolvedEntryStatus)