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