Uses of Interface
org.apache.ibatis.ibator.api.ProgressCallback

Packages that use ProgressCallback
org.apache.ibatis.ibator.ant   
org.apache.ibatis.ibator.api Provides the main classes and interfaces used by clients of ibator. 
org.apache.ibatis.ibator.config   
org.apache.ibatis.ibator.generator   
org.apache.ibatis.ibator.generator.ibatis2   
org.apache.ibatis.ibator.internal   
 

Uses of ProgressCallback in org.apache.ibatis.ibator.ant
 

Classes in org.apache.ibatis.ibator.ant that implement ProgressCallback
 class AntProgressCallback
          This callback logs progress messages with the Ant logger
 

Uses of ProgressCallback in org.apache.ibatis.ibator.api
 

Methods in org.apache.ibatis.ibator.api with parameters of type ProgressCallback
abstract  void IntrospectedTable.calculateGenerators(java.util.List<java.lang.String> warnings, ProgressCallback progressCallback)
          This method can be used to initialize the generators before they will be called.
 void Ibator.generate(ProgressCallback callback)
          This is the main method for generating code.
 void Ibator.generate(ProgressCallback callback, java.util.Set<java.lang.String> contextIds)
          This is the main method for generating code.
 void Ibator.generate(ProgressCallback callback, java.util.Set<java.lang.String> contextIds, java.util.Set<java.lang.String> fullyQualifiedTableNames)
          This is the main method for generating code.
 

Uses of ProgressCallback in org.apache.ibatis.ibator.config
 

Methods in org.apache.ibatis.ibator.config with parameters of type ProgressCallback
 void IbatorContext.generateFiles(ProgressCallback callback, java.util.List<GeneratedJavaFile> generatedJavaFiles, java.util.List<GeneratedXmlFile> generatedXmlFiles, java.util.List<java.lang.String> warnings)
           
 void IbatorContext.introspectTables(ProgressCallback callback, java.util.List<java.lang.String> warnings, java.util.Set<java.lang.String> fullyQualifiedTableNames)
          Introspect tables based on the configuration specified in the constructor.
 

Uses of ProgressCallback in org.apache.ibatis.ibator.generator
 

Fields in org.apache.ibatis.ibator.generator declared as ProgressCallback
protected  ProgressCallback AbstractGenerator.progressCallback
           
 

Methods in org.apache.ibatis.ibator.generator that return ProgressCallback
 ProgressCallback AbstractGenerator.getProgressCallback()
           
 

Methods in org.apache.ibatis.ibator.generator with parameters of type ProgressCallback
 void AbstractGenerator.setProgressCallback(ProgressCallback progressCallback)
           
 

Uses of ProgressCallback in org.apache.ibatis.ibator.generator.ibatis2
 

Methods in org.apache.ibatis.ibator.generator.ibatis2 with parameters of type ProgressCallback
protected  void IntrospectedTableIbatis2Java2Impl.calculateDAOGenerators(java.util.List<java.lang.String> warnings, ProgressCallback progressCallback)
           
 void IntrospectedTableIbatis2Java2Impl.calculateGenerators(java.util.List<java.lang.String> warnings, ProgressCallback progressCallback)
           
protected  void IntrospectedTableIbatis2Java2Impl.calculateJavaModelGenerators(java.util.List<java.lang.String> warnings, ProgressCallback progressCallback)
           
protected  void IntrospectedTableIbatis2Java2Impl.calculateSqlMapGenerator(java.util.List<java.lang.String> warnings, ProgressCallback progressCallback)
           
protected  void IntrospectedTableIbatis2Java2Impl.initializeAbstractGenerator(AbstractGenerator abstractGenerator, java.util.List<java.lang.String> warnings, ProgressCallback progressCallback)
           
 

Uses of ProgressCallback in org.apache.ibatis.ibator.internal
 

Classes in org.apache.ibatis.ibator.internal that implement ProgressCallback
 class NullProgressCallback
          This class implements a progress callback that does nothing.