KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > pmd > SourceFileConstants


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 JavaDoc JAVA_EXTENSION_UPPERCASE = "JAVA";
11     public static final String JavaDoc JSP_EXTENSION_UPPERCASE = "JSP";
12     public static final String JavaDoc JSPX_EXTENSION_UPPERCASE = "JSPX";
13
14 }
15
Popular Tags