All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.hm.hafner.analysis.registry.KlocWorkDescriptor Maven / Gradle / Ivy

package edu.hm.hafner.analysis.registry;

import edu.hm.hafner.analysis.IssueParser;
import edu.hm.hafner.analysis.parser.violations.KlocWorkAdapter;

/**
 * A descriptor for Klocwork.
 *
 * @author Lorenz Munsch
 */
class KlocWorkDescriptor extends ParserDescriptor {
    private static final String ID = "klocwork";
    private static final String NAME = "Klocwork";

    KlocWorkDescriptor() {
        super(ID, NAME);
    }

    @Override
    public IssueParser createParser(final Option... options) {
        return new KlocWorkAdapter();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy