Package org.aspectj.bridge
Schnittstelle IProgressListener
public interface IProgressListener
Used to give progress information typically to IDEs
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungbooleanvoidsetCancelledRequested(boolean cancelRequested) voidsetProgress(double percentDone) void
-
Methodendetails
-
setText
- Parameter:
text- the current phase of processing
-
setProgress
void setProgress(double percentDone) - Parameter:
percentDone- how much work is completed so far
-
setCancelledRequested
void setCancelledRequested(boolean cancelRequested) - Parameter:
cancelRequested- true if the caller wants the current compilation to stop asap
-
isCancelledRequested
boolean isCancelledRequested()- Gibt zurück:
- true if the consumer of the progress info would like the compileation to stop
-