Uses of Class
org.mybatis.generator.api.dom.xml.Document

Packages that use Document
org.mybatis.generator.api Provides the main classes and interfaces used by clients of MyBatis Generator. 
org.mybatis.generator.codegen   
org.mybatis.generator.codegen.ibatis2.sqlmap   
org.mybatis.generator.codegen.mybatis3.xmlmapper   
org.mybatis.generator.config   
org.mybatis.generator.internal   
 

Uses of Document in org.mybatis.generator.api
 

Methods in org.mybatis.generator.api with parameters of type Document
 boolean PluginAdapter.sqlMapDocumentGenerated(Document document, IntrospectedTable introspectedTable)
           
 boolean Plugin.sqlMapDocumentGenerated(Document document, IntrospectedTable introspectedTable)
          This method is called when the SqlMap document has been generated.
 

Constructors in org.mybatis.generator.api with parameters of type Document
GeneratedXmlFile(Document document, java.lang.String fileName, java.lang.String targetPackage, java.lang.String targetProject, boolean isMergeable)
           
 

Uses of Document in org.mybatis.generator.codegen
 

Methods in org.mybatis.generator.codegen that return Document
abstract  Document AbstractXmlGenerator.getDocument()
           
 

Uses of Document in org.mybatis.generator.codegen.ibatis2.sqlmap
 

Methods in org.mybatis.generator.codegen.ibatis2.sqlmap that return Document
 Document SqlMapGenerator.getDocument()
           
 

Uses of Document in org.mybatis.generator.codegen.mybatis3.xmlmapper
 

Methods in org.mybatis.generator.codegen.mybatis3.xmlmapper that return Document
 Document XMLMapperGenerator.getDocument()
           
 

Uses of Document in org.mybatis.generator.config
 

Methods in org.mybatis.generator.config that return Document
 Document Configuration.toDocument()
          Builds an XML representation of this configuration.
 

Uses of Document in org.mybatis.generator.internal
 

Methods in org.mybatis.generator.internal with parameters of type Document
 boolean PluginAggregator.sqlMapDocumentGenerated(Document document, IntrospectedTable introspectedTable)