Package org.mevenide.idea.repository

Examples of org.mevenide.idea.repository.ChildrenFetchService.fetch()


        }

        private RepoPathElement[] getPathElements()
                throws InterruptedException, ExecutionException {
            final ChildrenFetchService executor = ChildrenFetchService.getInstance();
            final Future<RepoPathElement[]> fetchResult = executor.fetch(pathElement);
            try {
                status = SearchStatus.SEARCHING;
                listener.fetchStarted(RepoTreeNode.this);
                LOG.trace("Received fetch future for " + pathElement.getRootURI() + " - waiting for results...");
                final RepoPathElement[] children = fetchResult.get();
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.