Uses of Class
org.mybatis.generator.config.Context
Packages that use Context
Package
Description
Provides the main classes and interfaces used by clients of MyBatis Generator.
-
Uses of Context in org.mybatis.generator.api
Fields in org.mybatis.generator.api declared as ContextModifier and TypeFieldDescriptionprotected ContextIntrospectedColumn.contextprotected ContextIntrospectedTable.contextprotected ContextPluginAdapter.contextMethods in org.mybatis.generator.api that return ContextMethods in org.mybatis.generator.api with parameters of type ContextModifier and TypeMethodDescriptionvoidCompositePlugin.setContext(Context context) voidIntrospectedColumn.setContext(Context context) voidIntrospectedTable.setContext(Context context) voidJavaFormatter.setContext(Context context) voidJavaTypeResolver.setContext(Context context) Sets the instance of the Context object associated with this instance.voidKotlinFormatter.setContext(Context context) voidPlugin.setContext(Context context) Set the context under which this plugin is running.voidPluginAdapter.setContext(Context context) voidXmlFormatter.setContext(Context context) Constructors in org.mybatis.generator.api with parameters of type ContextModifierConstructorDescriptionFullyQualifiedTable(String introspectedCatalog, String introspectedSchema, String introspectedTableName, String domainObjectName, String alias, boolean ignoreQualifiersAtRuntime, String runtimeCatalog, String runtimeSchema, String runtimeTableName, boolean delimitIdentifiers, DomainObjectRenamingRule domainObjectRenamingRule, 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 ContextModifier and TypeFieldDescriptionprotected ContextDefaultJavaFormatter.contextprotected ContextDefaultKotlinFormatter.contextprotected ContextDefaultXmlFormatter.contextMethods in org.mybatis.generator.api.dom with parameters of type ContextModifier and TypeMethodDescriptionvoidDefaultJavaFormatter.setContext(Context context) voidDefaultKotlinFormatter.setContext(Context context) voidDefaultXmlFormatter.setContext(Context context) -
Uses of Context in org.mybatis.generator.codegen
Fields in org.mybatis.generator.codegen declared as ContextMethods in org.mybatis.generator.codegen with parameters of type Context -
Uses of Context in org.mybatis.generator.config
Fields in org.mybatis.generator.config with type parameters of type ContextMethods in org.mybatis.generator.config that return types with arguments of type ContextMethods in org.mybatis.generator.config with parameters of type ContextConstructors in org.mybatis.generator.config with parameters of type Context -
Uses of Context in org.mybatis.generator.config.xml
Methods in org.mybatis.generator.config.xml with parameters of type ContextModifier and TypeMethodDescriptionprotected voidMyBatisGeneratorConfigurationParser.parseCommentGenerator(Context context, Node node) protected voidMyBatisGeneratorConfigurationParser.parseConnectionFactory(Context context, Node node) private voidMyBatisGeneratorConfigurationParser.parseJavaClientGenerator(Context context, Node node) protected voidMyBatisGeneratorConfigurationParser.parseJavaModelGenerator(Context context, Node node) protected voidMyBatisGeneratorConfigurationParser.parseJavaTypeResolver(Context context, Node node) protected voidMyBatisGeneratorConfigurationParser.parseJdbcConnection(Context context, Node node) private voidMyBatisGeneratorConfigurationParser.parsePlugin(Context context, Node node) protected voidMyBatisGeneratorConfigurationParser.parseSqlMapGenerator(Context context, Node node) protected voidMyBatisGeneratorConfigurationParser.parseTable(Context context, Node node) -
Uses of Context in org.mybatis.generator.internal
Methods in org.mybatis.generator.internal with parameters of type ContextModifier and TypeMethodDescriptionstatic CommentGeneratorObjectFactory.createCommentGenerator(Context context) static ConnectionFactoryObjectFactory.createConnectionFactory(Context context) static IntrospectedColumnObjectFactory.createIntrospectedColumn(Context context) static IntrospectedTableObjectFactory.createIntrospectedTable(TableConfiguration tableConfiguration, FullyQualifiedTable table, Context context) static IntrospectedTableObjectFactory.createIntrospectedTableForValidation(Context context) Creates an introspected table implementation that is only usable for validation .static JavaFormatterObjectFactory.createJavaFormatter(Context context) static JavaTypeResolverObjectFactory.createJavaTypeResolver(Context context, List<String> warnings) static KotlinFormatterObjectFactory.createKotlinFormatter(Context context) static PluginObjectFactory.createPlugin(Context context, PluginConfiguration pluginConfiguration) static XmlFormatterObjectFactory.createXmlFormatter(Context context) voidPluginAggregator.setContext(Context context) -
Uses of Context in org.mybatis.generator.internal.db
Fields in org.mybatis.generator.internal.db declared as ContextConstructors in org.mybatis.generator.internal.db with parameters of type ContextModifierConstructorDescriptionDatabaseIntrospector(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 ContextMethods in org.mybatis.generator.internal.types with parameters of type Context -
Uses of Context in org.mybatis.generator.internal.util
Methods in org.mybatis.generator.internal.util with parameters of type ContextModifier and TypeMethodDescriptionprivate static voidJavaBeansUtil.addGeneratedAnnotation(Field field, Context context, IntrospectedColumn introspectedColumn, IntrospectedTable introspectedTable, CompilationUnit compilationUnit) private static voidJavaBeansUtil.addGeneratedGetterAnnotation(Method method, IntrospectedColumn introspectedColumn, Context context, IntrospectedTable introspectedTable, CompilationUnit compilationUnit) private static voidJavaBeansUtil.addGeneratedGetterJavaDoc(Method method, IntrospectedColumn introspectedColumn, Context context, IntrospectedTable introspectedTable) private static voidJavaBeansUtil.addGeneratedJavaDoc(Field field, Context context, IntrospectedColumn introspectedColumn, IntrospectedTable introspectedTable) private static voidJavaBeansUtil.addGeneratedSetterAnnotation(Method method, IntrospectedColumn introspectedColumn, Context context, IntrospectedTable introspectedTable, CompilationUnit compilationUnit) private static voidJavaBeansUtil.addGeneratedSetterJavaDoc(Method method, IntrospectedColumn introspectedColumn, Context context, IntrospectedTable introspectedTable) static FieldJavaBeansUtil.getJavaBeansField(IntrospectedColumn introspectedColumn, Context context, IntrospectedTable introspectedTable) static FieldJavaBeansUtil.getJavaBeansFieldWithGeneratedAnnotation(IntrospectedColumn introspectedColumn, Context context, IntrospectedTable introspectedTable, CompilationUnit compilationUnit) static MethodJavaBeansUtil.getJavaBeansGetter(IntrospectedColumn introspectedColumn, Context context, IntrospectedTable introspectedTable) static MethodJavaBeansUtil.getJavaBeansGetterWithGeneratedAnnotation(IntrospectedColumn introspectedColumn, Context context, IntrospectedTable introspectedTable, CompilationUnit compilationUnit) static MethodJavaBeansUtil.getJavaBeansSetter(IntrospectedColumn introspectedColumn, Context context, IntrospectedTable introspectedTable) static MethodJavaBeansUtil.getJavaBeansSetterWithGeneratedAnnotation(IntrospectedColumn introspectedColumn, Context context, IntrospectedTable introspectedTable, CompilationUnit compilationUnit) private static booleanJavaBeansUtil.isTrimStringsEnabled(Context context) -
Uses of Context in org.mybatis.generator.runtime.dynamic.sql.elements
Fields in org.mybatis.generator.runtime.dynamic.sql.elements declared as ContextModifier and TypeFieldDescriptionprivate ContextAbstractMethodGenerator.BaseBuilder.contextprotected final ContextAbstractMethodGenerator.contextprivate ContextSelectListGenerator.Builder.contextprivate final ContextSelectListGenerator.contextMethods in org.mybatis.generator.runtime.dynamic.sql.elements with parameters of type ContextModifier and TypeMethodDescriptionAbstractMethodGenerator.BaseBuilder.withContext(Context context) SelectListGenerator.Builder.withContext(Context context) -
Uses of Context in org.mybatis.generator.runtime.kotlin
Fields in org.mybatis.generator.runtime.kotlin declared as ContextModifier and TypeFieldDescriptionprivate final ContextKotlinDynamicSqlSupportClassGenerator.contextConstructors in org.mybatis.generator.runtime.kotlin with parameters of type ContextModifierConstructorDescriptionKotlinDynamicSqlSupportClassGenerator(Context context, IntrospectedTable introspectedTable, List<String> warnings) -
Uses of Context in org.mybatis.generator.runtime.kotlin.elements
Fields in org.mybatis.generator.runtime.kotlin.elements declared as ContextModifier and TypeFieldDescriptionprivate ContextAbstractKotlinFunctionGenerator.BaseBuilder.contextprotected final ContextAbstractKotlinFunctionGenerator.contextprivate ContextColumnListGenerator.Builder.contextprivate final ContextColumnListGenerator.contextMethods in org.mybatis.generator.runtime.kotlin.elements with parameters of type ContextModifier and TypeMethodDescriptionAbstractKotlinFunctionGenerator.BaseBuilder.withContext(Context context) ColumnListGenerator.Builder.withContext(Context context)