Package org.aspectj.bridge
Interface IProgressListener
public interface IProgressListener
Used to give progress information typically to IDEs
-
Method Summary
Modifier and TypeMethodDescriptionbooleanvoidsetCancelledRequested(boolean cancelRequested) voidsetProgress(double percentDone) void
-
Method Details
-
setText
- Parameters:
text- the current phase of processing
-
setProgress
void setProgress(double percentDone) - Parameters:
percentDone- how much work is completed so far
-
setCancelledRequested
void setCancelledRequested(boolean cancelRequested) - Parameters:
cancelRequested- true if the caller wants the current compilation to stop asap
-
isCancelledRequested
boolean isCancelledRequested()- Returns:
- true if the consumer of the progress info would like the compileation to stop
-