Package org.castor.ddlgen

Examples of org.castor.ddlgen.MappingHelper


    /**
     * {@inheritDoc}
     */
    public void initialize() {
        setMappingHelper(new MappingHelper());
        setTypeMapper(new MssqlTypeMapper(getConfiguration()));
        setSchemaFactory(new MssqlSchemaFactory());
    }
View Full Code Here


    /**
     * {@inheritDoc}
     */
    public void initialize() {
        setMappingHelper(new MappingHelper());
        setTypeMapper(new SybaseTypeMapper(getConfiguration()));
        setSchemaFactory(new SybaseSchemaFactory());
    }
View Full Code Here

   
    /**
     * {@inheritDoc}
     */
    public void initialize() {
        setMappingHelper(new MappingHelper());
        setTypeMapper(new MysqlTypeMapper(getConfiguration()));
        setSchemaFactory(new MysqlSchemaFactory());
    }
View Full Code Here

    /**
     * {@inheritDoc}
     */
    public void initialize() {
        setMappingHelper(new MappingHelper());
        setTypeMapper(new PostgresqlTypeMapper(getConfiguration()));
        setSchemaFactory(new PostgresqlSchemaFactory());
    }
View Full Code Here

    /**
     * {@inheritDoc}
     */
    public void initialize() {
        setMappingHelper(new MappingHelper());
        setTypeMapper(new HsqlTypeMapper(getConfiguration()));
        setSchemaFactory(new HsqlSchemaFactory());
    }
View Full Code Here

    /**
     * {@inheritDoc}
     */
    public void initialize() {
        setMappingHelper(new MappingHelper());
        setTypeMapper(new SapdbTypeMapper(getConfiguration()));
        setSchemaFactory(new SapdbSchemaFactory());
    }
View Full Code Here

    /**
     * {@inheritDoc}
     */
    public void initialize() {
        setMappingHelper(new MappingHelper());
        setTypeMapper(new PointBaseTypeMapper(getConfiguration()));
        setSchemaFactory(new PointBaseSchemaFactory());
    }
View Full Code Here

    /**
     * {@inheritDoc}
     */
    public void initialize() {
        setMappingHelper(new MappingHelper());
        setTypeMapper(new Db2TypeMapper(getConfiguration()));
        setSchemaFactory(new Db2SchemaFactory());
    }
View Full Code Here

    /**
     * {@inheritDoc}
     */
    public void initialize() {
        setMappingHelper(new MappingHelper());
        setTypeMapper(new DerbyTypeMapper(getConfiguration()));
        setSchemaFactory(new DerbySchemaFactory());
    }
View Full Code Here

    /**
     * {@inheritDoc}
     */
    public void initialize() {
        setMappingHelper(new MappingHelper());
        setTypeMapper(new OracleTypeMapper(getConfiguration()));
        setSchemaFactory(new OracleSchemaFactory());
    }
View Full Code Here

TOP

Related Classes of org.castor.ddlgen.MappingHelper

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.