1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package net.sourceforge.pmd.cpd; 5 6 /** 7 * 8 * @author Romain PELISSE belaran@gmail.com 9 */ 10 public class FortranLanguage extends AbstractLanguage { 11 public FortranLanguage() { 12 super(new FortranTokenizer(), ".for", ".f", ".f66", ".f77", ".f90"); 13 } 14 }