Package org.mybatis.generator.codegen.ibatis2.dao

Examples of org.mybatis.generator.codegen.ibatis2.dao.DAOGenerator


    calculateDAOGenerators(warnings, progressCallback);
    calculateSqlMapGenerator(warnings, progressCallback);
  }

  protected void calculateSqlMapGenerator(List<String> warnings, ProgressCallback progressCallback) {
    sqlMapGenerator = new SqlMapGenerator();
    initializeAbstractGenerator(sqlMapGenerator, warnings, progressCallback);
  }
View Full Code Here


        calculateSqlMapGenerator(warnings, progressCallback);
    }

    protected void calculateSqlMapGenerator(List<String> warnings,
            ProgressCallback progressCallback) {
        sqlMapGenerator = new SqlMapGenerator();
        initializeAbstractGenerator(sqlMapGenerator, warnings, progressCallback);
    }
View Full Code Here

    return answer;
  }

  protected void addResultMapWithoutBLOBsElement(XmlElement parentElement) {
    if (introspectedTable.getRules().generateBaseResultMap()) {
      AbstractXmlElementGenerator elementGenerator = new ResultMapWithoutBLOBsElementGenerator();
      initializeAndExecuteGenerator(elementGenerator, parentElement);
    }
  }
View Full Code Here

    }
  }

  protected void addResultMapWithBLOBsElement(XmlElement parentElement) {
    if (introspectedTable.getRules().generateResultMapWithBLOBs()) {
      AbstractXmlElementGenerator elementGenerator = new ResultMapWithBLOBsElementGenerator();
      initializeAndExecuteGenerator(elementGenerator, parentElement);
    }
  }
View Full Code Here

    }
  }

  protected void addExampleWhereClauseElement(XmlElement parentElement) {
    if (introspectedTable.getRules().generateSQLExampleWhereClause()) {
      AbstractXmlElementGenerator elementGenerator = new ExampleWhereClauseElementGenerator();
      initializeAndExecuteGenerator(elementGenerator, parentElement);
    }
  }
View Full Code Here

    }
  }

  protected void addBaseColumnListElement(XmlElement parentElement) {
    if (introspectedTable.getRules().generateBaseColumnList()) {
      AbstractXmlElementGenerator elementGenerator = new BaseColumnListElementGenerator();
      initializeAndExecuteGenerator(elementGenerator, parentElement);
    }
  }
View Full Code Here

    }
  }

  protected void addBlobColumnListElement(XmlElement parentElement) {
    if (introspectedTable.getRules().generateBlobColumnList()) {
      AbstractXmlElementGenerator elementGenerator = new BlobColumnListElementGenerator();
      initializeAndExecuteGenerator(elementGenerator, parentElement);
    }
  }
View Full Code Here

    }
  }

  protected void addSelectByExampleWithoutBLOBsElement(XmlElement parentElement) {
    if (introspectedTable.getRules().generateSelectByExampleWithoutBLOBs()) {
      AbstractXmlElementGenerator elementGenerator = new SelectByExampleWithoutBLOBsElementGenerator();
      initializeAndExecuteGenerator(elementGenerator, parentElement);
    }
  }
View Full Code Here

    }
  }

  protected void addSelectByExampleWithBLOBsElement(XmlElement parentElement) {
    if (introspectedTable.getRules().generateSelectByExampleWithBLOBs()) {
      AbstractXmlElementGenerator elementGenerator = new SelectByExampleWithBLOBsElementGenerator();
      initializeAndExecuteGenerator(elementGenerator, parentElement);
    }
  }
View Full Code Here

    }
  }

  protected void addSelectByPrimaryKeyElement(XmlElement parentElement) {
    if (introspectedTable.getRules().generateSelectByPrimaryKey()) {
      AbstractXmlElementGenerator elementGenerator = new SelectByPrimaryKeyElementGenerator();
      initializeAndExecuteGenerator(elementGenerator, parentElement);
    }
  }
View Full Code Here

TOP

Related Classes of org.mybatis.generator.codegen.ibatis2.dao.DAOGenerator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.