1 /**
2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3 */
4 package net.sourceforge.pmd.lang.fortran;
5
6 import net.sourceforge.pmd.lang.BaseLanguageModule;
7
8 /**
9 * Implementation for the Fortran Language Module
10 */
11 public class FortranLanguageModule extends BaseLanguageModule {
12
13 /** The name */
14 public static final String NAME = "Fortran";
15 /** The terse name */
16 public static final String TERSE_NAME = "fortran";
17
18 /**
19 * Creates a new instance of {@link FortranLanguageModule}
20 */
21 public FortranLanguageModule() {
22 super(NAME, null, TERSE_NAME, null, "for", "f", "f66", "f77", "f90");
23 addVersion("", null, true);
24 }
25
26 }