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

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

package edu.hm.hafner.analysis.registry;

import edu.hm.hafner.analysis.IssueParser;
import edu.hm.hafner.analysis.parser.P4Parser;

/**
 * A descriptor for the Perforce tool.
 *
 * @author Lorenz Munsch
 */
class PerforceDescriptor extends ParserDescriptor {
    private static final String ID = "perforce";
    private static final String NAME = "Perforce Compiler";

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy