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

Packages that use ProgressCallback
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   
org.apache.ibatis.abator.internal.java.dao   
org.apache.ibatis.abator.internal.java.model   
org.apache.ibatis.abator.internal.sqlmap   
org.apache.ibatis.abator.ui.plugin   
 

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

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

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)
          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
 

Methods in org.apache.ibatis.abator.internal.java with parameters of type ProgressCallback
 java.util.List JavaModelGeneratorDefaultImpl.getGeneratedJavaFiles(ColumnDefinitions columnDefinitions, TableConfiguration tableConfiguration, ProgressCallback callback)
           
 java.util.List DAOGeneratorBaseImpl.getGeneratedJavaFiles(ColumnDefinitions columnDefinitions, TableConfiguration tableConfiguration, ProgressCallback callback)
           
 

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 BaseJava2DAOGenerator.getGeneratedJavaFiles(ColumnDefinitions columnDefinitions, TableConfiguration tableConfiguration, 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(ColumnDefinitions columnDefinitions, TableConfiguration tableConfiguration, 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(ColumnDefinitions columnDefinitions, TableConfiguration tableConfiguration, ProgressCallback callback)
           
 java.util.List SqlMapGeneratorDefaultImpl.getGeneratedXMLFiles(ColumnDefinitions columnDefinitions, TableConfiguration tableConfiguration, ProgressCallback callback)
           
 

Uses of ProgressCallback in org.apache.ibatis.abator.ui.plugin
 

Classes in org.apache.ibatis.abator.ui.plugin that implement ProgressCallback
 class EclipseProgressCallback