Package org.infernus.idea.checkstyle.checker

Examples of org.infernus.idea.checkstyle.checker.CheckFilesThread


        if (files == null || files.isEmpty()) {
            LOG.debug("No files provided.");
            return;
        }

        final CheckFilesThread checkFilesThread = new CheckFilesThread(this, moduleClassPathBuilder(), files, overrideConfigLocation);
        checkFilesThread.setPriority(Thread.MIN_PRIORITY);

        synchronized (checksInProgress) {
            checksInProgress.add(checkFilesThread);
        }

        checkFilesThread.start();
    }
View Full Code Here

TOP

Related Classes of org.infernus.idea.checkstyle.checker.CheckFilesThread

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.