Java Code Examples for org.mybatis.generator.config.Context#setIntrospectedColumnImpl()
The following examples show how to use
org.mybatis.generator.config.Context#setIntrospectedColumnImpl() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MyBatisGeneratorConfigurationParser.java From mapper-generator-javafx with Apache License 2.0 | 4 votes |
private void parseContext(Configuration configuration, Node node) { Properties attributes = parseAttributes(node); String defaultModelType = attributes.getProperty("defaultModelType"); String targetRuntime = attributes.getProperty("targetRuntime"); String introspectedColumnImpl = attributes .getProperty("introspectedColumnImpl"); String id = attributes.getProperty("id"); ModelType mt = defaultModelType == null ? null : ModelType .getModelType(defaultModelType); Context context = new Context(mt); context.setId(id); if (stringHasValue(introspectedColumnImpl)) { context.setIntrospectedColumnImpl(introspectedColumnImpl); } if (stringHasValue(targetRuntime)) { context.setTargetRuntime(targetRuntime); } configuration.addContext(context); NodeList nodeList = node.getChildNodes(); for (int i = 0; i < nodeList.getLength(); i++) { Node childNode = nodeList.item(i); if (childNode.getNodeType() != Node.ELEMENT_NODE) { continue; } if ("property".equals(childNode.getNodeName())) { parseProperty(context, childNode); } else if ("plugin".equals(childNode.getNodeName())) { parsePlugin(context, childNode); } else if ("commentGenerator".equals(childNode.getNodeName())) { parseCommentGenerator(context, childNode); } else if ("jdbcConnection".equals(childNode.getNodeName())) { parseJdbcConnection(context, childNode); } else if ("connectionFactory".equals(childNode.getNodeName())) { parseConnectionFactory(context, childNode); } else if ("javaModelGenerator".equals(childNode.getNodeName())) { parseJavaModelGenerator(context, childNode); } else if ("javaTypeResolver".equals(childNode.getNodeName())) { parseJavaTypeResolver(context, childNode); } else if ("sqlMapGenerator".equals(childNode.getNodeName())) { parseSqlMapGenerator(context, childNode); } else if ("javaClientGenerator".equals(childNode.getNodeName())) { parseJavaClientGenerator(context, childNode); } else if ("table".equals(childNode.getNodeName())) { parseTable(context, childNode); } } }
Example 2
Source File: IbatorConfigurationParser.java From mybatis-generator-core-fix with Apache License 2.0 | 4 votes |
private void parseIbatorContext(Configuration configuration, Node node) { Properties attributes = parseAttributes(node); String defaultModelType = attributes.getProperty("defaultModelType"); //$NON-NLS-1$ String targetRuntime = attributes.getProperty("targetRuntime"); //$NON-NLS-1$ String introspectedColumnImpl = attributes .getProperty("introspectedColumnImpl"); //$NON-NLS-1$ String id = attributes.getProperty("id"); //$NON-NLS-1$ ModelType mt = defaultModelType == null ? null : ModelType .getModelType(defaultModelType); Context context = new Context(mt); context.setId(id); if (stringHasValue(introspectedColumnImpl)) { context.setIntrospectedColumnImpl(introspectedColumnImpl); } if (stringHasValue(targetRuntime)) { context.setTargetRuntime(targetRuntime); } configuration.addContext(context); NodeList nodeList = node.getChildNodes(); for (int i = 0; i < nodeList.getLength(); i++) { Node childNode = nodeList.item(i); if (childNode.getNodeType() != Node.ELEMENT_NODE) { continue; } if ("property".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseProperty(context, childNode); } else if ("ibatorPlugin".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseIbatorPlugin(context, childNode); } else if ("commentGenerator".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseCommentGenerator(context, childNode); } else if ("jdbcConnection".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseJdbcConnection(context, childNode); } else if ("javaModelGenerator".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseJavaModelGenerator(context, childNode); } else if ("javaTypeResolver".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseJavaTypeResolver(context, childNode); } else if ("sqlMapGenerator".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseSqlMapGenerator(context, childNode); } else if ("daoGenerator".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseDaoGenerator(context, childNode); } else if ("table".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseTable(context, childNode); } } }
Example 3
Source File: MyBatisGeneratorConfigurationParser.java From mybatis-generator-core-fix with Apache License 2.0 | 4 votes |
private void parseContext(Configuration configuration, Node node) { Properties attributes = parseAttributes(node); String defaultModelType = attributes.getProperty("defaultModelType"); //$NON-NLS-1$ String targetRuntime = attributes.getProperty("targetRuntime"); //$NON-NLS-1$ String introspectedColumnImpl = attributes .getProperty("introspectedColumnImpl"); //$NON-NLS-1$ String id = attributes.getProperty("id"); //$NON-NLS-1$ ModelType mt = defaultModelType == null ? null : ModelType .getModelType(defaultModelType); Context context = new Context(mt); context.setId(id); if (stringHasValue(introspectedColumnImpl)) { context.setIntrospectedColumnImpl(introspectedColumnImpl); } if (stringHasValue(targetRuntime)) { context.setTargetRuntime(targetRuntime); } configuration.addContext(context); NodeList nodeList = node.getChildNodes(); for (int i = 0; i < nodeList.getLength(); i++) { Node childNode = nodeList.item(i); if (childNode.getNodeType() != Node.ELEMENT_NODE) { continue; } if ("property".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseProperty(context, childNode); } else if ("plugin".equals(childNode.getNodeName())) { //$NON-NLS-1$ parsePlugin(context, childNode); } else if ("commentGenerator".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseCommentGenerator(context, childNode); } else if ("jdbcConnection".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseJdbcConnection(context, childNode); } else if ("javaModelGenerator".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseJavaModelGenerator(context, childNode); } else if ("javaTypeResolver".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseJavaTypeResolver(context, childNode); } else if ("sqlMapGenerator".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseSqlMapGenerator(context, childNode); } else if ("javaClientGenerator".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseJavaClientGenerator(context, childNode); } else if ("table".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseTable(context, childNode); } } }
Example 4
Source File: IbatorConfigurationParser.java From mybatis-generator-plus with Apache License 2.0 | 4 votes |
private void parseIbatorContext(Configuration configuration, Node node) { Properties attributes = parseAttributes(node); String defaultModelType = attributes.getProperty("defaultModelType"); //$NON-NLS-1$ String targetRuntime = attributes.getProperty("targetRuntime"); //$NON-NLS-1$ String introspectedColumnImpl = attributes .getProperty("introspectedColumnImpl"); //$NON-NLS-1$ String id = attributes.getProperty("id"); //$NON-NLS-1$ ModelType mt = defaultModelType == null ? null : ModelType .getModelType(defaultModelType); Context context = new Context(mt); context.setId(id); if (stringHasValue(introspectedColumnImpl)) { context.setIntrospectedColumnImpl(introspectedColumnImpl); } if (stringHasValue(targetRuntime)) { context.setTargetRuntime(targetRuntime); } configuration.addContext(context); NodeList nodeList = node.getChildNodes(); for (int i = 0; i < nodeList.getLength(); i++) { Node childNode = nodeList.item(i); if (childNode.getNodeType() != Node.ELEMENT_NODE) { continue; } if ("property".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseProperty(context, childNode); } else if ("ibatorPlugin".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseIbatorPlugin(context, childNode); } else if ("commentGenerator".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseCommentGenerator(context, childNode); } else if ("jdbcConnection".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseJdbcConnection(context, childNode); } else if ("javaModelGenerator".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseJavaModelGenerator(context, childNode); } else if ("javaTypeResolver".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseJavaTypeResolver(context, childNode); } else if ("sqlMapGenerator".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseSqlMapGenerator(context, childNode); } else if ("daoGenerator".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseDaoGenerator(context, childNode); } else if ("table".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseTable(context, childNode); } } }
Example 5
Source File: MyBatisGeneratorConfigurationParser.java From mybatis-generator-plus with Apache License 2.0 | 4 votes |
private void parseContext(Configuration configuration, Node node) { Properties attributes = parseAttributes(node); String defaultModelType = attributes.getProperty("defaultModelType"); //$NON-NLS-1$ String targetRuntime = attributes.getProperty("targetRuntime"); //$NON-NLS-1$ String introspectedColumnImpl = attributes .getProperty("introspectedColumnImpl"); //$NON-NLS-1$ String id = attributes.getProperty("id"); //$NON-NLS-1$ ModelType mt = defaultModelType == null ? null : ModelType .getModelType(defaultModelType); Context context = new Context(mt); context.setId(id); if (stringHasValue(introspectedColumnImpl)) { context.setIntrospectedColumnImpl(introspectedColumnImpl); } if (stringHasValue(targetRuntime)) { context.setTargetRuntime(targetRuntime); } configuration.addContext(context); NodeList nodeList = node.getChildNodes(); for (int i = 0; i < nodeList.getLength(); i++) { Node childNode = nodeList.item(i); if (childNode.getNodeType() != Node.ELEMENT_NODE) { continue; } if ("property".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseProperty(context, childNode); } else if ("plugin".equals(childNode.getNodeName())) { //$NON-NLS-1$ parsePlugin(context, childNode); } else if ("commentGenerator".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseCommentGenerator(context, childNode); } else if ("jdbcConnection".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseJdbcConnection(context, childNode); } else if ("javaModelGenerator".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseJavaModelGenerator(context, childNode); } else if ("javaTypeResolver".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseJavaTypeResolver(context, childNode); } else if ("sqlMapGenerator".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseSqlMapGenerator(context, childNode); } else if ("javaClientGenerator".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseJavaClientGenerator(context, childNode); } else if ("table".equals(childNode.getNodeName())) { //$NON-NLS-1$ parseTable(context, childNode); } } }