Uses of Class
org.mybatis.generator.config.Context

Packages that use Context
org.mybatis.generator.api Provides the main classes and interfaces used by clients of MyBatis Generator. 
org.mybatis.generator.api.dom   
org.mybatis.generator.codegen   
org.mybatis.generator.config   
org.mybatis.generator.internal   
org.mybatis.generator.internal.db   
org.mybatis.generator.internal.types   
 

Uses of Context in org.mybatis.generator.api
 

Fields in org.mybatis.generator.api declared as Context
protected  Context PluginAdapter.context
           
protected  Context IntrospectedTable.context
           
protected  Context IntrospectedColumn.context
           
 

Methods in org.mybatis.generator.api that return Context
 Context PluginAdapter.getContext()
           
 Context IntrospectedTable.getContext()
           
 Context IntrospectedColumn.getContext()
           
 

Methods in org.mybatis.generator.api with parameters of type Context
 void XmlFormatter.setContext(Context context)
           
 void PluginAdapter.setContext(Context context)
           
 void Plugin.setContext(Context context)
          Set the context under which this plugin is running
 void JavaTypeResolver.setContext(Context context)
          Sets the instance of the Context object associated with this instance.
 void JavaFormatter.setContext(Context context)
           
 void IntrospectedTable.setContext(Context context)
           
 void IntrospectedColumn.setContext(Context context)
           
 

Constructors in org.mybatis.generator.api with parameters of type Context
FullyQualifiedTable(String introspectedCatalog, String introspectedSchema, String introspectedTableName, String domainObjectName, String alias, boolean ignoreQualifiersAtRuntime, String runtimeCatalog, String runtimeSchema, String runtimeTableName, boolean delimitIdentifiers, Context context)
          This object is used to hold information related to the table itself, not the columns in the table.
 

Uses of Context in org.mybatis.generator.api.dom
 

Fields in org.mybatis.generator.api.dom declared as Context
protected  Context DefaultXmlFormatter.context
           
protected  Context DefaultJavaFormatter.context
           
 

Methods in org.mybatis.generator.api.dom with parameters of type Context
 void DefaultXmlFormatter.setContext(Context context)
           
 void DefaultJavaFormatter.setContext(Context context)
           
 

Uses of Context in org.mybatis.generator.codegen
 

Fields in org.mybatis.generator.codegen declared as Context
protected  Context AbstractGenerator.context
           
 

Methods in org.mybatis.generator.codegen that return Context
 Context AbstractGenerator.getContext()
           
 

Methods in org.mybatis.generator.codegen with parameters of type Context
 void AbstractGenerator.setContext(Context context)
           
 

Uses of Context in org.mybatis.generator.config
 

Methods in org.mybatis.generator.config that return Context
 Context Configuration.getContext(String id)
           
 

Methods in org.mybatis.generator.config that return types with arguments of type Context
 List<Context> Configuration.getContexts()
           
 

Methods in org.mybatis.generator.config with parameters of type Context
 void Configuration.addContext(Context context)
           
 

Constructors in org.mybatis.generator.config with parameters of type Context
TableConfiguration(Context context)
           
 

Uses of Context in org.mybatis.generator.internal
 

Methods in org.mybatis.generator.internal with parameters of type Context
static CommentGenerator ObjectFactory.createCommentGenerator(Context context)
           
static IntrospectedColumn ObjectFactory.createIntrospectedColumn(Context context)
           
static IntrospectedTable ObjectFactory.createIntrospectedTable(TableConfiguration tableConfiguration, FullyQualifiedTable table, Context context)
           
static IntrospectedTable ObjectFactory.createIntrospectedTableForValidation(Context context)
          This method creates an introspected table implementation that is only usable for validation (i.e.
static JavaFormatter ObjectFactory.createJavaFormatter(Context context)
           
static JavaTypeResolver ObjectFactory.createJavaTypeResolver(Context context, List<String> warnings)
           
static Plugin ObjectFactory.createPlugin(Context context, PluginConfiguration pluginConfiguration)
           
static XmlFormatter ObjectFactory.createXmlFormatter(Context context)
           
 void PluginAggregator.setContext(Context context)
           
 

Uses of Context in org.mybatis.generator.internal.db
 

Constructors in org.mybatis.generator.internal.db with parameters of type Context
DatabaseIntrospector(Context context, DatabaseMetaData databaseMetaData, JavaTypeResolver javaTypeResolver, List<String> warnings)
           
 

Uses of Context in org.mybatis.generator.internal.types
 

Fields in org.mybatis.generator.internal.types declared as Context
protected  Context JavaTypeResolverDefaultImpl.context
           
 

Methods in org.mybatis.generator.internal.types with parameters of type Context
 void JavaTypeResolverDefaultImpl.setContext(Context context)
           
 



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