Uses of Interface
org.mybatis.generator.api.ProgressCallback

Packages that use ProgressCallback
org.mybatis.generator.ant   
org.mybatis.generator.api Provides the main classes and interfaces used by clients of MyBatis Generator. 
org.mybatis.generator.codegen   
org.mybatis.generator.codegen.ibatis2   
org.mybatis.generator.codegen.mybatis3   
org.mybatis.generator.config   
org.mybatis.generator.internal   
 

Uses of ProgressCallback in org.mybatis.generator.ant
 

Classes in org.mybatis.generator.ant that implement ProgressCallback
 class AntProgressCallback
          This callback logs progress messages with the Ant logger
 

Uses of ProgressCallback in org.mybatis.generator.api
 

Classes in org.mybatis.generator.api that implement ProgressCallback
 class VerboseProgressCallback
           
 

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

Uses of ProgressCallback in org.mybatis.generator.codegen
 

Fields in org.mybatis.generator.codegen declared as ProgressCallback
protected  ProgressCallback AbstractGenerator.progressCallback
           
 

Methods in org.mybatis.generator.codegen that return ProgressCallback
 ProgressCallback AbstractGenerator.getProgressCallback()
           
 

Methods in org.mybatis.generator.codegen with parameters of type ProgressCallback
 void AbstractGenerator.setProgressCallback(ProgressCallback progressCallback)
           
 

Uses of ProgressCallback in org.mybatis.generator.codegen.ibatis2
 

Methods in org.mybatis.generator.codegen.ibatis2 with parameters of type ProgressCallback
protected  void IntrospectedTableIbatis2Java2Impl.calculateDAOGenerators(List<String> warnings, ProgressCallback progressCallback)
           
 void IntrospectedTableIbatis2Java2Impl.calculateGenerators(List<String> warnings, ProgressCallback progressCallback)
           
protected  void IntrospectedTableIbatis2Java2Impl.calculateJavaModelGenerators(List<String> warnings, ProgressCallback progressCallback)
           
protected  void IntrospectedTableIbatis2Java2Impl.calculateSqlMapGenerator(List<String> warnings, ProgressCallback progressCallback)
           
protected  void IntrospectedTableIbatis2Java2Impl.initializeAbstractGenerator(AbstractGenerator abstractGenerator, List<String> warnings, ProgressCallback progressCallback)
           
 

Uses of ProgressCallback in org.mybatis.generator.codegen.mybatis3
 

Methods in org.mybatis.generator.codegen.mybatis3 with parameters of type ProgressCallback
protected  AbstractJavaClientGenerator IntrospectedTableMyBatis3Impl.calculateClientGenerators(List<String> warnings, ProgressCallback progressCallback)
           
 void IntrospectedTableMyBatis3Impl.calculateGenerators(List<String> warnings, ProgressCallback progressCallback)
           
protected  void IntrospectedTableMyBatis3SimpleImpl.calculateJavaModelGenerators(List<String> warnings, ProgressCallback progressCallback)
           
protected  void IntrospectedTableMyBatis3Impl.calculateJavaModelGenerators(List<String> warnings, ProgressCallback progressCallback)
           
protected  void IntrospectedTableMyBatis3SimpleImpl.calculateXmlMapperGenerator(AbstractJavaClientGenerator javaClientGenerator, List<String> warnings, ProgressCallback progressCallback)
           
protected  void IntrospectedTableMyBatis3Impl.calculateXmlMapperGenerator(AbstractJavaClientGenerator javaClientGenerator, List<String> warnings, ProgressCallback progressCallback)
           
protected  void IntrospectedTableMyBatis3Impl.initializeAbstractGenerator(AbstractGenerator abstractGenerator, List<String> warnings, ProgressCallback progressCallback)
           
 

Uses of ProgressCallback in org.mybatis.generator.config
 

Methods in org.mybatis.generator.config with parameters of type ProgressCallback
 void Context.generateFiles(ProgressCallback callback, List<GeneratedJavaFile> generatedJavaFiles, List<GeneratedXmlFile> generatedXmlFiles, List<String> warnings)
           
 void Context.introspectTables(ProgressCallback callback, List<String> warnings, Set<String> fullyQualifiedTableNames)
          Introspect tables based on the configuration specified in the constructor.
 

Uses of ProgressCallback in org.mybatis.generator.internal
 

Classes in org.mybatis.generator.internal that implement ProgressCallback
 class NullProgressCallback
          This class implements a progress callback that does nothing.
 



Copyright © 2010-2012 MyBatis.org. All Rights Reserved.