Uses of Class
org.apache.ibatis.abator.config.FullyQualifiedTable

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

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

Methods in org.apache.ibatis.abator.api with parameters of type FullyQualifiedTable
 java.lang.String SqlMapGenerator.getSqlMapNamespace(FullyQualifiedTable table)
           
 FullyQualifiedJavaType JavaModelGenerator.getPrimaryKeyType(FullyQualifiedTable table)
           
 FullyQualifiedJavaType JavaModelGenerator.getRecordType(FullyQualifiedTable table)
           
 FullyQualifiedJavaType JavaModelGenerator.getExampleType(FullyQualifiedTable table)
           
 FullyQualifiedJavaType JavaModelGenerator.getRecordWithBLOBsType(FullyQualifiedTable table)
           
 

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

Methods in org.apache.ibatis.abator.config that return FullyQualifiedTable
 FullyQualifiedTable TableConfiguration.getTable()
           
 

Methods in org.apache.ibatis.abator.config with parameters of type FullyQualifiedTable
 void TableConfiguration.setTable(FullyQualifiedTable tableName)
           
 

Uses of FullyQualifiedTable in org.apache.ibatis.abator.internal.java
 

Methods in org.apache.ibatis.abator.internal.java with parameters of type FullyQualifiedTable
protected  void JavaModelGeneratorDefaultImpl.generateClassParts(FullyQualifiedTable table, java.util.Collection columnDefinitions, GeneratedJavaFile answer)
          Adds fields and getter/setter methods for each ColumnDefinition passed into the method.
protected  java.lang.String JavaModelGeneratorDefaultImpl.getJavaModelPackage(FullyQualifiedTable table)
          Calculates the package for generated domain objects.
 FullyQualifiedJavaType JavaModelGeneratorDefaultImpl.getExampleType(FullyQualifiedTable table)
           
 FullyQualifiedJavaType JavaModelGeneratorDefaultImpl.getPrimaryKeyType(FullyQualifiedTable table)
           
 FullyQualifiedJavaType JavaModelGeneratorDefaultImpl.getRecordType(FullyQualifiedTable table)
           
 FullyQualifiedJavaType JavaModelGeneratorDefaultImpl.getRecordWithBLOBsType(FullyQualifiedTable table)
           
protected  FullyQualifiedJavaType DAOGeneratorBaseImpl.getDAOImplementationType(FullyQualifiedTable table)
           
protected  FullyQualifiedJavaType DAOGeneratorBaseImpl.getDAOInterfaceType(FullyQualifiedTable table)
           
protected  java.lang.String DAOGeneratorBaseImpl.getDAOPackage(FullyQualifiedTable table)
           
protected  java.lang.String DAOGeneratorBaseImpl.getExampleParmsMethod(ColumnDefinition cd, FullyQualifiedTable table)
          This method returns a properly formatted method that sets up example parms for an individual column.
 java.lang.String BaseJavaCodeGenerator.getFieldComment(FullyQualifiedTable table, java.lang.String columnName)
           
 java.lang.String BaseJavaCodeGenerator.getFieldComment(FullyQualifiedTable table)
           
 java.lang.String BaseJavaCodeGenerator.getGetterMethodComment(FullyQualifiedTable table, ColumnDefinition columnDefinition)
           
 java.lang.String BaseJavaCodeGenerator.getSetterMethodComment(FullyQualifiedTable table, ColumnDefinition columnDefinition)
           
 java.lang.String BaseJavaCodeGenerator.getMethodComment(FullyQualifiedTable table)
           
 java.lang.String BaseJavaCodeGenerator.getMethodComment(FullyQualifiedTable table, java.lang.String deprecatedComment)
           
 

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

Methods in org.apache.ibatis.abator.internal.java.dao with parameters of type FullyQualifiedTable
protected  FullyQualifiedJavaType BaseJava2DAOGenerator.getDAOImplementationType(FullyQualifiedTable table)
           
protected  java.lang.String BaseJava2DAOGenerator.getDAOPackage(FullyQualifiedTable table)
           
protected  FullyQualifiedJavaType BaseJava2DAOGenerator.getDAOInterfaceType(FullyQualifiedTable table)
           
 

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

Methods in org.apache.ibatis.abator.internal.java.model with parameters of type FullyQualifiedTable
protected  void JavaModelGeneratorJava2Impl.generateClassParts(FullyQualifiedTable table, java.util.Collection columnDefinitions, GeneratedJavaFile answer)
          Adds fields and getter/setter methods for each ColumnDefinition passed into the method.
protected  java.lang.String JavaModelGeneratorJava2Impl.getJavaModelPackage(FullyQualifiedTable table)
          Calculates the package for generated domain objects.
protected  java.lang.String JavaModelGeneratorJava2Impl.getCalculateConditionMethod(ColumnDefinition cd, FullyQualifiedTable table)
          This method returns a properly formatted method that sets up QBE conditions for an individual column.
 FullyQualifiedJavaType JavaModelGeneratorJava2Impl.getExampleType(FullyQualifiedTable table)
           
 FullyQualifiedJavaType JavaModelGeneratorJava2Impl.getPrimaryKeyType(FullyQualifiedTable table)
           
 FullyQualifiedJavaType JavaModelGeneratorJava2Impl.getRecordType(FullyQualifiedTable table)
           
 FullyQualifiedJavaType JavaModelGeneratorJava2Impl.getRecordWithBLOBsType(FullyQualifiedTable table)
           
 

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

Methods in org.apache.ibatis.abator.internal.sqlmap with parameters of type FullyQualifiedTable
 java.lang.String SqlMapGeneratorIterateImpl.getSqlMapNamespace(FullyQualifiedTable table)
           
protected  java.lang.String SqlMapGeneratorIterateImpl.getResultMapName(FullyQualifiedTable table)
          Calculates the name of the result map.
protected  java.lang.String SqlMapGeneratorIterateImpl.getSqlMapFileName(FullyQualifiedTable table)
          Calculates a file name for the current table.
protected  java.lang.String SqlMapGeneratorIterateImpl.getSqlMapPackage(FullyQualifiedTable table)
          Calculates the package for the current table.
 java.lang.String SqlMapGeneratorDefaultImpl.getSqlMapNamespace(FullyQualifiedTable table)
           
protected  java.lang.String SqlMapGeneratorDefaultImpl.getResultMapName(FullyQualifiedTable table)
          Calculates the name of the result map.
protected  java.lang.String SqlMapGeneratorDefaultImpl.getSqlMapFileName(FullyQualifiedTable table)
          Calculates a file name for the current table.
protected  java.lang.String SqlMapGeneratorDefaultImpl.getSqlMapPackage(FullyQualifiedTable table)
          Calculates the package for the current table.