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

net.sourceforge.pmd.lang.velocity.VtlHandler Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
/*
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */

package net.sourceforge.pmd.lang.velocity;

import net.sourceforge.pmd.lang.AbstractPmdLanguageVersionHandler;
import net.sourceforge.pmd.lang.ast.Parser;
import net.sourceforge.pmd.lang.velocity.ast.VtlParser;

public class VtlHandler extends AbstractPmdLanguageVersionHandler {

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy