01 /**
02 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
03 * @author Romain PELISSE belaran@gmail.com
04 */
05 package net.sourceforge.pmd.cpd;
06
07 public class FortranLanguage extends AbstractLanguage {
08 public FortranLanguage() {
09 super(new FortranTokenizer(), ".for");
10 }
11 }
|