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

net.sourceforge.pmd.cpd.FortranLanguage Maven / Gradle / Ivy

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

package net.sourceforge.pmd.cpd;

/**
 * Language implementation for Fortran
 *
 * @author Romain PELISSE [email protected]
 */
public class FortranLanguage extends AbstractLanguage {
    /**
     * Create a Fortran Language instance.
     */
    public FortranLanguage() {
        super("Fortran", "fortran", new AnyTokenizer("!"), ".for", ".f", ".f66", ".f77", ".f90");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy