org.mybatis.generator.internal.rules
Class FlatModelRules

java.lang.Object
  extended by org.mybatis.generator.internal.rules.BaseRules
      extended by org.mybatis.generator.internal.rules.FlatModelRules
All Implemented Interfaces:
Rules

public class FlatModelRules
extends BaseRules

This class encapsulates all the code generation rules for a table using the flat model.

Author:
Jeff Butler

Field Summary
 
Fields inherited from class org.mybatis.generator.internal.rules.BaseRules
introspectedTable, isModelOnly, tableConfiguration
 
Constructor Summary
FlatModelRules(IntrospectedTable introspectedTable)
           
 
Method Summary
 boolean generateBaseRecordClass()
          We always generate a base record in the flat model.
 boolean generatePrimaryKeyClass()
          We never generate a primary key in the flat model.
 boolean generateRecordWithBLOBsClass()
          We never generate a record with BLOBs class in the flat model.
 
Methods inherited from class org.mybatis.generator.internal.rules.BaseRules
calculateAllFieldsClass, generateBaseColumnList, generateBaseResultMap, generateBlobColumnList, generateCountByExample, generateDeleteByExample, generateDeleteByPrimaryKey, generateExampleClass, generateInsert, generateInsertSelective, generateJavaClient, generateMyBatis3UpdateByExampleWhereClause, generateResultMapWithBLOBs, generateSelectByExampleWithBLOBs, generateSelectByExampleWithoutBLOBs, generateSelectByPrimaryKey, generateSQLExampleWhereClause, generateUpdateByExampleSelective, generateUpdateByExampleWithBLOBs, generateUpdateByExampleWithoutBLOBs, generateUpdateByPrimaryKeySelective, generateUpdateByPrimaryKeyWithBLOBs, generateUpdateByPrimaryKeyWithoutBLOBs, getIntrospectedTable
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FlatModelRules

public FlatModelRules(IntrospectedTable introspectedTable)
Method Detail

generatePrimaryKeyClass

public boolean generatePrimaryKeyClass()
We never generate a primary key in the flat model.

Returns:
true if the primary key should be generated

generateBaseRecordClass

public boolean generateBaseRecordClass()
We always generate a base record in the flat model.

Returns:
true if the class should be generated

generateRecordWithBLOBsClass

public boolean generateRecordWithBLOBsClass()
We never generate a record with BLOBs class in the flat model.

Returns:
true if the record with BLOBs class should be generated


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