All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface buildtools.BuildProgressListener

public interface BuildProgressListener
extends EventListener

Method Index

 o reportBuildDone(boolean)
tell the build progress listener when the build is all done.
 o reportError(String, int, String)
reportError is called when the compiler finds an error in a file
 o reportNewBuild()
 o reportStatus(int, String)
JJ...

Methods

 o reportNewBuild
 public abstract void reportNewBuild()
 o reportError
 public abstract void reportError(String file,
                                  int line,
                                  String errorMessage)
reportError is called when the compiler finds an error in a file

 o reportBuildDone
 public abstract void reportBuildDone(boolean success)
tell the build progress listener when the build is all done.

 o 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