01: package net.sourceforge.pmd;
02:
03: /**
04: * Constants used when handling names of source files.
05: *
06: * @author pieter_van_raemdonck - Application Engineers NV/SA - www.ae.be
07: */
08: public class SourceFileConstants {
09:
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: }
|