1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package net.sf.jour;
22
23 /***
24 * Conditional compile.
25 *
26 * The conditional compilation practice is used to optionally
27 * remove chunks of code from the compiled version of a class.
28 * It uses the fact that compilers will ignore any unreachable branches of code.
29 *
30 * To implement conditional compilation,
31 * place code which is to be conditionally compiled in an if block which
32 * evaluates the boolean Debug.ON
33 *
34 * With the advent of assert in JDK 1.4, the utility of conditional
35 * compilation is probably reduced.
36 * But we need to support Java 1.3 compilation for now.
37 *
38 * Created on 04.12.2004
39 *
40 * Contributing Author(s):
41 *
42 * Misha Lifschitz <mishalifschitz at users.sourceforge.net> (Inital implementation)
43 * Vlad Skarzhevskyy <vlads at users.sourceforge.net> (Inital implementation)
44 *
45 * @author vlads
46 * @version $Revision: 1.1 $ ($Author: vlads $) $Date: 2004/12/05 02:17:08 $
47 */
48 public final class Debug {
49
50
51 public static final boolean ON = true;
52 }