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

Packages that use ProgressCallback
org.apache.ibatis.abator.ant   
org.apache.ibatis.abator.api Provides the main classes and interfaces used by clients of Abator. 
org.apache.ibatis.abator.config   
org.apache.ibatis.abator.internal   
org.apache.ibatis.abator.internal.java.dao   
org.apache.ibatis.abator.internal.java.model   
org.apache.ibatis.abator.internal.sqlmap   
 

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

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

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

Methods in org.apache.ibatis.abator.api with parameters of type ProgressCallback
 void Abator.generate(ProgressCallback callback)
          This is the main method for generating code.
 void Abator.generate(ProgressCallback callback, java.util.Set contextIds)
          This is the main method for generating code.
 void Abator.generate(ProgressCallback callback, java.util.Set contextIds, java.util.Set fullyQualifiedTableNames)
          This is the main method for generating code.
 java.util.List JavaModelGenerator.getGeneratedJavaFiles(IntrospectedTable introspectedTable, ProgressCallback callback)
          This method returns a list of GenerateJavaFile objects.
 java.util.List DAOGenerator.getGeneratedJavaFiles(IntrospectedTable introspectedTable, ProgressCallback callback)
          This method returns a list of GenerateJavaFile objects.
 java.util.List SqlMapGenerator.getGeneratedXMLFiles(IntrospectedTable introspectedTable, ProgressCallback callback)
           
 

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

Methods in org.apache.ibatis.abator.config with parameters of type ProgressCallback
 void AbatorContext.generateFiles(ProgressCallback callback, java.util.List generatedJavaFiles, java.util.List generatedXmlFiles, java.util.List warnings, java.util.Set fullyQualifiedTableNames)
          Generate iBATIS artifacts based on the configuration specified in the constructor.
 

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

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

Uses of ProgressCallback in org.apache.ibatis.abator.internal.java.dao
 

Methods in org.apache.ibatis.abator.internal.java.dao with parameters of type ProgressCallback
 java.util.List BaseDAOGenerator.getGeneratedJavaFiles(IntrospectedTable introspectedTable, ProgressCallback callback)
           
 

Uses of ProgressCallback in org.apache.ibatis.abator.internal.java.model
 

Methods in org.apache.ibatis.abator.internal.java.model with parameters of type ProgressCallback
 java.util.List JavaModelGeneratorJava2Impl.getGeneratedJavaFiles(IntrospectedTable introspectedTable, ProgressCallback callback)
           
 

Uses of ProgressCallback in org.apache.ibatis.abator.internal.sqlmap
 

Methods in org.apache.ibatis.abator.internal.sqlmap with parameters of type ProgressCallback
 java.util.List SqlMapGeneratorIterateImpl.getGeneratedXMLFiles(IntrospectedTable introspectedTable, ProgressCallback callback)