All Packages Class Hierarchy This Package Previous Next Index
Interface buildtools.BuildProgressListener
- public interface BuildProgressListener
- extends EventListener
-
reportBuildDone(boolean)
- tell the build progress listener when the build is all done.
-
reportError(String, int, String)
- reportError is called when the compiler finds an error in a file
-
reportNewBuild()
-
-
reportStatus(int, String)
- JJ...
reportNewBuild
public abstract void reportNewBuild()
reportError
public abstract void reportError(String file,
int line,
String errorMessage)
- reportError is called when the compiler finds an error in a file
reportBuildDone
public abstract void reportBuildDone(boolean success)
- tell the build progress listener when the build is all done.
reportStatus
public abstract void reportStatus(int progress,
String message)
- JJ... we should not use reportMessage but should use reportStatus.
progress is in 0...100
All Packages Class Hierarchy This Package Previous Next Index