Package | Description |
---|---|
org.mybatis.generator.api |
Provides the main classes and interfaces used by clients of MyBatis Generator.
|
org.mybatis.generator.codegen.ibatis2 | |
org.mybatis.generator.codegen.mybatis3 | |
org.mybatis.generator.config | |
org.mybatis.generator.internal | |
org.mybatis.generator.plugins |
Modifier and Type | Method and Description |
---|---|
List<GeneratedXmlFile> |
PluginAdapter.contextGenerateAdditionalXmlFiles() |
List<GeneratedXmlFile> |
Plugin.contextGenerateAdditionalXmlFiles()
This method can be used to generate any additional XML file needed by
your implementation.
|
List<GeneratedXmlFile> |
PluginAdapter.contextGenerateAdditionalXmlFiles(IntrospectedTable introspectedTable) |
List<GeneratedXmlFile> |
Plugin.contextGenerateAdditionalXmlFiles(IntrospectedTable introspectedTable)
This method can be used to generate additional XML files needed by your
implementation that might be related to a specific table.
|
abstract List<GeneratedXmlFile> |
IntrospectedTable.getGeneratedXmlFiles()
This method should return a list of generated XML files related to this
table.
|
Modifier and Type | Method and Description |
---|---|
boolean |
PluginAdapter.sqlMapGenerated(GeneratedXmlFile sqlMap,
IntrospectedTable introspectedTable) |
boolean |
Plugin.sqlMapGenerated(GeneratedXmlFile sqlMap,
IntrospectedTable introspectedTable)
This method is called when the SqlMap file has been generated.
|
Modifier and Type | Method and Description |
---|---|
List<GeneratedXmlFile> |
IntrospectedTableIbatis2Java2Impl.getGeneratedXmlFiles() |
Modifier and Type | Method and Description |
---|---|
List<GeneratedXmlFile> |
IntrospectedTableMyBatis3Impl.getGeneratedXmlFiles() |
Modifier and Type | Method and Description |
---|---|
void |
Context.generateFiles(ProgressCallback callback,
List<GeneratedJavaFile> generatedJavaFiles,
List<GeneratedXmlFile> generatedXmlFiles,
List<String> warnings) |
Modifier and Type | Method and Description |
---|---|
List<GeneratedXmlFile> |
PluginAggregator.contextGenerateAdditionalXmlFiles() |
List<GeneratedXmlFile> |
PluginAggregator.contextGenerateAdditionalXmlFiles(IntrospectedTable introspectedTable) |
Modifier and Type | Method and Description |
---|---|
static String |
XmlFileMergerJaxp.getMergedSource(GeneratedXmlFile generatedXmlFile,
File existingFile) |
boolean |
PluginAggregator.sqlMapGenerated(GeneratedXmlFile sqlMap,
IntrospectedTable introspectedTable) |
Modifier and Type | Method and Description |
---|---|
List<GeneratedXmlFile> |
SqlMapConfigPlugin.contextGenerateAdditionalXmlFiles() |
List<GeneratedXmlFile> |
MapperConfigPlugin.contextGenerateAdditionalXmlFiles() |
Modifier and Type | Method and Description |
---|---|
boolean |
SqlMapConfigPlugin.sqlMapGenerated(GeneratedXmlFile sqlMap,
IntrospectedTable introspectedTable) |
boolean |
MapperConfigPlugin.sqlMapGenerated(GeneratedXmlFile sqlMap,
IntrospectedTable introspectedTable) |
Copyright © 2010–2018 MyBatis.org. All rights reserved.