Class Overview
This callback logs progress messages with the Ant logger
Summary
Public Methods |
void
|
startTask(String subTaskName)
Called to denote the beginning of a save task
|
[Expand]
Inherited Methods |
From class
org.mybatis.generator.internal.NullProgressCallback
void
|
checkCancel()
The method is called periodically during a long running method.
|
void
|
done()
This method is called when all generated files have been saved
|
void
|
generationStarted(int totalTasks)
Called to note the start of the generation phase, and to note the maximum
number of startTask messages that will be sent for the generation phase.
|
void
|
introspectionStarted(int totalTasks)
Called to note the start of the introspection phase, and to note the
maximum number of startTask messages that will be sent for the
introspection phase.
|
void
|
saveStarted(int totalTasks)
Called to note the start of the file saving phase, and to note the
maximum number of startTask messages that will be sent for the file
saving phase phase.
|
void
|
startTask(String taskName)
Called to denote the beginning of a save task
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait()
|
final
void
|
wait(long arg0)
|
final
void
|
wait(long arg0, int arg1)
|
|
From interface
org.mybatis.generator.api.ProgressCallback
abstract
void
|
checkCancel()
The method is called periodically during a long running method.
|
abstract
void
|
done()
This method is called when all generated files have been saved
|
abstract
void
|
generationStarted(int totalTasks)
Called to note the start of the generation phase, and to note the maximum
number of startTask messages that will be sent for the generation phase.
|
abstract
void
|
introspectionStarted(int totalTasks)
Called to note the start of the introspection phase, and to note the
maximum number of startTask messages that will be sent for the
introspection phase.
|
abstract
void
|
saveStarted(int totalTasks)
Called to note the start of the file saving phase, and to note the
maximum number of startTask messages that will be sent for the file
saving phase phase.
|
abstract
void
|
startTask(String taskName)
Called to denote the beginning of a save task
|
|
Public Constructors
public
AntProgressCallback
(Task task, boolean verbose)
Public Methods
public
void
startTask
(String subTaskName)
Called to denote the beginning of a save task
Parameters
subTaskName
| a descriptive name of the current work step
|