|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface CompileListener
This interface allows you to listen for compile events. The order of occurence of these method calls for a given compilation is:
compileStarted() compileError() # If a compilation error occurs compileWarning() # If a compilation warning occurs compileFailed() or compileSucceeded()Note that currently BlueJ only reports the first compilation error or warning.
Method Summary | |
---|---|
void |
compileError(CompileEvent event)
This method will be called when there is a report of a compile error. |
void |
compileFailed(CompileEvent event)
This method will be called when the compile fails. |
void |
compileStarted(CompileEvent event)
This method will be called when a compilation starts. |
void |
compileSucceeded(CompileEvent event)
This method will be called when the compile ends successfully. |
void |
compileWarning(CompileEvent event)
This method will be called when there is a report of a compile warning. |
Method Detail |
---|
void compileStarted(CompileEvent event)
void compileError(CompileEvent event)
void compileWarning(CompileEvent event)
void compileSucceeded(CompileEvent event)
void compileFailed(CompileEvent event)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |