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.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 IntrospectedColumn.getContext()
           
 

Methods in org.mybatis.generator.api with parameters of type 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 IntrospectedTable.setContext(Context context)
           
 void IntrospectedColumn.setContext(Context context)
           
 

Constructors in org.mybatis.generator.api with parameters of type Context
FullyQualifiedTable(java.lang.String introspectedCatalog, java.lang.String introspectedSchema, java.lang.String introspectedTableName, java.lang.String domainObjectName, java.lang.String alias, boolean ignoreQualifiersAtRuntime, java.lang.String runtimeCatalog, java.lang.String runtimeSchema, java.lang.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.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(java.lang.String id)
           
 

Methods in org.mybatis.generator.config that return types with arguments of type Context
 java.util.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 JavaTypeResolver ObjectFactory.createJavaTypeResolver(Context context, java.util.List<java.lang.String> warnings)
           
static Plugin ObjectFactory.createPlugin(Context context, PluginConfiguration pluginConfiguration)
           
 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, java.sql.DatabaseMetaData databaseMetaData, JavaTypeResolver javaTypeResolver, java.util.List<java.lang.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)