Package com.puppycrawl.tools.checkstyle.api

Examples of com.puppycrawl.tools.checkstyle.api.FileSetCheck.destroy()


        fireAuditStarted();
        for (int i = 0; i < mFileSetChecks.size(); i++) {
            final FileSetCheck fileSetCheck =
                (FileSetCheck) mFileSetChecks.get(i);
            fileSetCheck.process(aFiles);
            fileSetCheck.destroy();
        }
        final int errorCount = mCounter.getCount();
        fireAuditFinished();
        return errorCount;
    }
View Full Code Here


        fireAuditStarted();
        for (int i = 0; i < mFileSetChecks.size(); i++) {
            final FileSetCheck fileSetCheck =
                (FileSetCheck) mFileSetChecks.get(i);
            fileSetCheck.process(aFiles);
            fileSetCheck.destroy();
        }
        final int errorCount = mCounter.getCount();
        fireAuditFinished();
        return errorCount;
    }
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.