org.eclipse.cdt.internal.ui.text
Interface IProblemRequestorExtension


public interface IProblemRequestorExtension

Extension to IProblemRequestor. IProblemRequestorExtension


Method Summary
 void beginReportingSequence()
          Informs the problem requestor that a sequence of reportings is about to start.
 void endReportingSequence()
          Informs the problem requestor that the sequence of reportings has been finished.
 void setIsActive(boolean isActive)
          Sets the active state of this problem requestor.
 void setProgressMonitor(org.eclipse.core.runtime.IProgressMonitor monitor)
          Sets the progress monitor to this problem requestor.
 

Method Detail

setProgressMonitor

void setProgressMonitor(org.eclipse.core.runtime.IProgressMonitor monitor)
Sets the progress monitor to this problem requestor.

Parameters:
monitor - the progress monitor to be used

setIsActive

void setIsActive(boolean isActive)
Sets the active state of this problem requestor.

Parameters:
isActive - the state of this problem requestor

beginReportingSequence

void beginReportingSequence()
Informs the problem requestor that a sequence of reportings is about to start. While a sequence is active, multiple peering calls of beginReporting and endReporting can appear.

Since:
3.0

endReportingSequence

void endReportingSequence()
Informs the problem requestor that the sequence of reportings has been finished.

Since:
3.0