Examples of DescriptorMapper


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
Copyright © 2018 www.massapi.com. 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.