View Javadoc

1   // CompilationConstants.java, created Oct 4, 2003 11:52:08 PM by joewhaley
2   // Copyright (C) 2003 John Whaley <jwhaley@alum.mit.edu>
3   // Licensed under the terms of the GNU LGPL; see COPYING for details.
4   package joeq.Compiler;
5   
6   /***
7    * CompilationConstants
8    * 
9    * @author John Whaley
10   * @version $Id: CompilationConstants.java 1456 2004-03-09 22:01:46Z jwhaley $
11   */
12  public interface CompilationConstants {
13  
14      public static final byte NO = 0;
15      public static final byte YES = 1;
16      public static final byte MAYBE = 2;
17      
18  }