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

net.sourceforge.pmd.lang.modelica.ModelicaHandler Maven / Gradle / Ivy

The newest version!
/**
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */

package net.sourceforge.pmd.lang.modelica;

import net.sourceforge.pmd.lang.AbstractPmdLanguageVersionHandler;
import net.sourceforge.pmd.lang.ast.Parser;
import net.sourceforge.pmd.lang.modelica.ast.ModelicaParser;

public class ModelicaHandler extends AbstractPmdLanguageVersionHandler {

    @Override
    public Parser getParser() {
        return new ModelicaParser();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy