Uses of Interface
org.eclipse.wst.jsdt.core.compiler.IProblem

Packages that use IProblem
org.eclipse.wst.jsdt.core   
org.eclipse.wst.jsdt.core.ast   
org.eclipse.wst.jsdt.core.compiler   
org.eclipse.wst.jsdt.core.dom   
org.eclipse.wst.jsdt.ui.text.java   
 

Uses of IProblem in org.eclipse.wst.jsdt.core
 

Methods in org.eclipse.wst.jsdt.core with parameters of type IProblem
 void ICompletionRequestor.acceptError(IProblem error)
          Deprecated. Use CompletionRequestor.completionFailure(IProblem) instead.
 void IProblemRequestor.acceptProblem(IProblem problem)
          Notification of a JavaScript problem.
 void CompletionRequestor.completionFailure(IProblem problem)
          Notification of failure to produce any completions.
 void CorrectionEngine.computeCorrections(IProblem problem, IJavaScriptUnit targetUnit, ICorrectionRequestor requestor)
          Performs code correction for the given IProblem, reporting results to the given correction requestor.
 

Uses of IProblem in org.eclipse.wst.jsdt.core.ast
 

Methods in org.eclipse.wst.jsdt.core.ast with parameters of type IProblem
 void ASTVisitor.acceptProblem(IProblem problem)
           
 

Uses of IProblem in org.eclipse.wst.jsdt.core.compiler
 

Classes in org.eclipse.wst.jsdt.core.compiler that implement IProblem
 class CategorizedProblem
          Richer description of a JavaScript problem, as detected by the compiler or some of the underlying technology reusing the compiler.
 

Uses of IProblem in org.eclipse.wst.jsdt.core.dom
 

Methods in org.eclipse.wst.jsdt.core.dom that return IProblem
 IProblem[] JavaScriptUnit.getProblems()
          Returns the list of detailed problem reports noted by the compiler during the parsing or the type checking of this javaScript unit.
 

Uses of IProblem in org.eclipse.wst.jsdt.ui.text.java
 

Methods in org.eclipse.wst.jsdt.ui.text.java with parameters of type IProblem
 void CompletionProposalCollector.completionFailure(IProblem problem)
          Notification of failure to produce any completions. Subclasses may extend, but must call the super implementation.