org.aspectj.bridge
Interface IProgressListener


public interface IProgressListener

Used to give progress information typically to IDEs


Method Summary
 boolean isCancelledRequested()
           
 void setCancelledRequested(boolean cancelRequested)
           
 void setProgress(double percentDone)
           
 void setText(java.lang.String text)
           
 

Method Detail

setText

void setText(java.lang.String text)
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