Clover Coverage Report
Coverage timestamp: Sa Aug 2 2008 13:56:27 CEST
0   60   0   -
0   15   -   0
0     -  
1    
 
  DependencyStateDescriptions       Line # 26 0 0 - -1.0
 
No Tests
 
1    /* $Id: DependencyStateDescriptions.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 constants of this package.
22    *
23    * @version $Revision: 1.1 $
24    * @author Michael Meyling
25    */
 
26    public interface DependencyStateDescriptions {
27   
28    /** Undefined state code. */
29    public static final int STATE_CODE_UNDEFINED = 0;
30   
31    /** Undefined state description. */
32    public static final String STATE_STRING_UNDEFINED = "undefined";
33   
34    /** Loading required modules code. */
35    public static final int STATE_CODE_LOADING_REQUIRED_MODULES = 11;
36   
37    /** Loading required modules description. */
38    public static final String STATE_STRING_LOADING_REQUIRED_MODULES = "loading required modules";
39   
40    /** Loading required modules failed code. */
41    public static final int STATE_CODE_LOADING_REQUIRED_MODULES_FAILED = 12;
42   
43    /** Loading required modules failed description. */
44    public static final String STATE_STRING_LOADING_REQUIRED_MODULES_FAILED
45    = "loading required modules failed";
46   
47    /** Loading required modules of required modules code. */
48    public static final int STATE_CODE_LOADING_REQUIRED_REQUIREMENTS = 13;
49   
50    /** Loading required modules of required modules failed description. */
51    public static final String STATE_STRING_LOADING_REQUIRED_REQUIREMENTS_FAILED
52    = "loading required modules of required modules failed";
53   
54    /** Loaded required modules code. */
55    public static final int STATE_CODE_LOADED_REQUIRED_MODULES = 15;
56   
57    /** Loaded required modules description. */
58    public static final String STATE_STRING_LOADED_REQUIRED_MODULES = "loaded required modules";
59   
60    }