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 * Defines the Language module for Matlab
9 */
10 public class MatlabLanguage extends AbstractLanguage {
11
12 /**
13 * Creates a new instance of {@link MatlabLanguage} with the default extensions for matlab files.
14 */
15 public MatlabLanguage() {
16 super("Matlab", "matlab", new MatlabTokenizer(), ".m");
17 }
18 }