Package com.buschmais.jqassistant.core.store.impl.dao

Examples of com.buschmais.jqassistant.core.store.impl.dao.DescriptorMapperRegistry


    private DescriptorDAO descriptorDAO;

    @Override
    public void start() {
        database = startDatabase();
        mapperRegistry = new DescriptorMapperRegistry();
        mapperRegistry.register(new ArtifactDescriptorMapper());
        mapperRegistry.register(new PackageDescriptorMapper());
        mapperRegistry.register(new TypeDescriptorMapper());
        mapperRegistry.register(new MethodDescriptorMapper());
        mapperRegistry.register(new ParameterDescriptorMapper());
View Full Code Here

TOP

Related Classes of com.buschmais.jqassistant.core.store.impl.dao.DescriptorMapperRegistry

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.