(file) Return to DebugLevel.java CVS log (file) (dir) Up to [Development] / ifodder / src / com / javaunderground / jdbc

 1 pjaol 1.1 package com.javaunderground.jdbc;
 2           
 3           /**
 4            * Title:
 5            * Description:
 6            * Copyright:    Copyright (c)
 7            * Company:
 8            * @author
 9            * @version 1.1
10            */
11           
12           public class DebugLevel {
13           
14               //private constructor keeps all instances within class
15               private DebugLevel(){
16               }
17           
18               //only allowed values for debugging
19               /**
20                * Turn debugging off
21                */
22 pjaol 1.1     public static DebugLevel OFF     = new DebugLevel();
23           
24               /**
25                * Turn debugging on
26                */
27               public static DebugLevel ON      = new DebugLevel();
28           
29               /**
30                * Set debugging to verbose
31                */
32               public static DebugLevel VERBOSE = new DebugLevel();
33           
34           
35           }

cvsadmin
Powered by
ViewCVS 0.9.2