org.mybatis.generator.internal.rules
Class FlatModelRules
java.lang.Object
org.mybatis.generator.internal.rules.BaseRules
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
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 |
FlatModelRules
public FlatModelRules(IntrospectedTable introspectedTable)
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.