Package org.mevenide.idea.repository

Examples of org.mevenide.idea.repository.ChildrenFetchService$ChildFetcher


            listener = pListener;
        }

        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

Related Classes of org.mevenide.idea.repository.ChildrenFetchService$ChildFetcher

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.