Package hudson.plugins.dry.parser.cpd

Examples of hudson.plugins.dry.parser.cpd.CpdParser


     * @param defaultEncoding
     *            default encoding of the files
     */
    public DuplicationParserRegistry(final int normalThreshold, final int highThreshold, final String defaultEncoding) {
        this.defaultEncoding = defaultEncoding;
        parsers.add(new CpdParser(highThreshold, normalThreshold));
        parsers.add(new CpdParser(highThreshold, normalThreshold, false));
        parsers.add(new SimianParser(highThreshold, normalThreshold));
        parsers.add(new DupFinderParser(highThreshold, normalThreshold));
    }
View Full Code Here

TOP

Related Classes of hudson.plugins.dry.parser.cpd.CpdParser

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.