1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package net.sourceforge.pmd.lang.java; 5 6 import net.sourceforge.pmd.lang.Parser; 7 import net.sourceforge.pmd.lang.ParserOptions; 8 9 public class Java14Handler extends AbstractJavaHandler { 10 11 public Parser getParser(ParserOptions parserOptions) { 12 return new Java14Parser(parserOptions); 13 } 14 }