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

Examples of com.buschmais.jqassistant.core.store.impl.dao.mapper.DescriptorMapper


    public void flush() {
        LOGGER.debug("Flushing changes to database.");
        for (Descriptor descriptor : descriptorCache.getDescriptors()) {
            LOGGER.debug("Flushing descriptor '{}'.", descriptor.getFullQualifiedName());
            Node node = getNode(descriptor);
            DescriptorMapper mapper = registry.getDescriptorMapper(descriptor.getClass());
            flushRelations(descriptor, node, mapper);
            flushProperties(descriptor, node, mapper);
            flushLabels(descriptor, node, mapper);
        }
        this.descriptorCache.flush();
View Full Code Here

TOP

Related Classes of com.buschmais.jqassistant.core.store.impl.dao.mapper.DescriptorMapper

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.