1 package net.sourceforge.pmd; 2 3 /*** 4 * Constants used when handling names of source files. 5 * 6 * @author pieter_van_raemdonck - Application Engineers NV/SA - www.ae.be 7 */ 8 public class SourceFileConstants { 9 10 public static final String JAVA_EXTENSION_UPPERCASE = "JAVA"; 11 public static final String JSP_EXTENSION_UPPERCASE = "JSP"; 12 public static final String JSPX_EXTENSION_UPPERCASE = "JSPX"; 13 14 }