Clover Coverage Report
Coverage timestamp: Fri May 24 2013 13:47:27 UTC
0   52   0   -
0   13   -   0
0     -  
1    
 
  LoadingImportsStateDescriptions       Line # 24 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 constants of this package.
20    *
21    * @version $Revision: 1.1 $
22    * @author Michael Meyling
23    */
 
24    public interface LoadingImportsStateDescriptions {
25   
26    /** Undefined state code. */
27    public static final int STATE_CODE_UNDEFINED = 0;
28   
29    /** Undefined state description. */
30    public static final String STATE_STRING_UNDEFINED = "undefined";
31   
32    /** Loading required modules code. */
33    public static final int STATE_CODE_LOADING_IMPORTS = 12;
34   
35    /** Loading required modules description. */
36    public static final String STATE_STRING_LOADING_IMPORTS = "loading imported modules";
37   
38    /** Loading required modules code. */
39    public static final int STATE_CODE_LOADING_IMPORTS_FAILED = 13;
40   
41    /** Loading required modules description. */
42    public static final String STATE_STRING_LOADING_IMPORTS_FAILED
43    = "loading imported modules failed";
44   
45    /** Loading required modules failed code. */
46    public static final int STATE_CODE_LOADED_IMPORTED_MODULES = 14;
47   
48    /** Loading required modules failed description. */
49    public static final String STATE_STRING_LOADED_IMPORTED_MODULES
50    = "loaded imported modules";
51   
52    }