Clover Coverage Report
Coverage timestamp: Sa Aug 2 2008 13:56:27 CEST
0   64   0   -
0   15   -   0
0     -  
1    
 
  LogicalStateDescriptions       Line # 26 0 0 - -1.0
 
No Tests
 
1    /* $Id: LogicalStateDescriptions.java,v 1.1 2008/03/27 05:16:25 m31 Exp $
2    *
3    * This file is part of the project "Hilbert II" - http://www.qedeq.org
4    *
5    * Copyright 2000-2008, Michael Meyling <mime@qedeq.org>.
6    *
7    * "Hilbert II" is free software; you can redistribute
8    * it and/or modify it under the terms of the GNU General Public
9    * License as published by the Free Software Foundation; either
10    * version 2 of the License, or (at your option) any later version.
11    *
12    * This program is distributed in the hope that it will be useful,
13    * but WITHOUT ANY WARRANTY; without even the implied warranty of
14    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15    * GNU General Public License for more details.
16    */
17   
18    package org.qedeq.kernel.common;
19   
20    /**
21    * This interface provides primitive constants for the {@link LogicalState}.
22    *
23    * @version $Revision: 1.1 $
24    * @author Michael Meyling
25    */
 
26    public interface LogicalStateDescriptions {
27   
28    /** Code for unchecked state. */
29    public static final int STATE_CODE_UNCHECKED = 0;
30   
31    /** Description for unchecked state. */
32    public static final String STATE_STRING_UNCHECKED = "unchecked";
33   
34    /** Code for external checking phase. */
35    public static final int STATE_CODE_EXTERNAL_CHECKING = 1;
36   
37    /** Description for external internal checking phase. */
38    public static final String STATE_STRING_EXTERNAL_CHECKING = "checking imports";
39   
40    /** Code for external check failure. */
41    public static final int STATE_CODE_EXTERNAL_CHECKING_FAILED = 2;
42   
43    /** Description for external check failure. */
44    public static final String STATE_STRING_EXTERNAL_CHECKING_FAILED = "import check failed";
45   
46    /** Code for internal checking phase. */
47    public static final int STATE_CODE_INTERNAL_CHECKING = 3;
48   
49    /** Description for internal checking phase. */
50    public static final String STATE_STRING_INTERNAL_CHECKING = "checking";
51   
52    /** Code for check failure. */
53    public static final int STATE_CODE_INTERNAL_CHECKING_FAILED = 4;
54   
55    /** Description for check failure. */
56    public static final String STATE_STRING_INTERNAL_CHECKING_FAILED = "check failed";
57   
58    /** Code for successfully completely checked state. */
59    public static final int STATE_CODE_COMPLETELY_CHECKED = 5;
60   
61    /** Description for successfully completely checked state. */
62    public static final String STATE_STRING_COMPLETELY_CHECKED = "checked";
63   
64    }