net.sourceforge.pmd.cpd.FortranLanguage Maven / Gradle / Ivy
/**
* 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 Fotran Language instance.
*/
public FortranLanguage() {
super("Fortran", "fortran", new FortranTokenizer(), ".for", ".f", ".f66", ".f77", ".f90");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy