Clover Coverage Report
Coverage timestamp: Sa Aug 2 2008 13:56:27 CEST
0   110   0   -
0   33   -   0
0     -  
1    
 
  LoadingStateDescriptions       Line # 26 0 0 - -1.0
 
No Tests
 
1    /* $Id: LoadingStateDescriptions.java,v 1.2 2008/05/15 21:27:48 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.2 $
24    * @author Michael Meyling
25    */
 
26    public interface LoadingStateDescriptions {
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    /** Trying to access web address code. */
35    public static final int STATE_CODE_LOCATING_WITHIN_WEB = 1;
36   
37    /** Trying to access web address description. */
38    public static final String STATE_STRING_LOCATING_WITHIN_WEB = "locating within web";
39   
40    /** Trying to access web address failure code. */
41    public static final int STATE_CODE_LOCATING_WITHIN_WEB_FAILED = 2;
42   
43    /** Trying to access web address failure description. */
44    public static final String STATE_STRING_LOCATING_WITHIN_WEB_FAILED
45    = "locating within web failed";
46   
47    /** Loading from web address code. */
48    public static final int STATE_CODE_LOADING_FROM_WEB = 3;
49   
50    /** Loading from web address description. */
51    public static final String STATE_STRING_LOADING_FROM_WEB = "loading from web";
52   
53    /** Loading from web address failure code. */
54    public static final int STATE_CODE_LOADING_FROM_WEB_FAILED = 4;
55   
56    /** Loading from web address failure description. */
57    public static final String STATE_STRING_LOADING_FROM_WEB_FAILED = "loading from web failed";
58   
59    /** Loading from local file code. */
60    public static final int STATE_CODE_LOADING_FROM_LOCAL_FILE = 5;
61   
62    /** Loading from web address description. */
63    public static final String STATE_STRING_LOADING_FROM_LOCAL_FILE = "loading from local file";
64   
65    /** Loading from web address failure code. */
66    public static final int STATE_CODE_LOADING_FROM_LOCAL_FILE_FAILED = 6;
67   
68    /** Loading from web address failure description. */
69    public static final String STATE_STRING_LOADING_FROM_LOCAL_FILE_FAILED
70    = "loading from web failed";
71   
72    /** Loading from local file buffer code. */
73    public static final int STATE_CODE_LOADING_FROM_BUFFER = 7;
74   
75    /** Loading from local file buffer description. */
76    public static final String STATE_STRING_LOADING_FROM_BUFFER = "loading from local buffer";
77   
78    /** Loading from local file buffer failed code. */
79    public static final int STATE_CODE_LOADING_FROM_BUFFER_FAILED = 8;
80   
81    /** Loading from local file buffer failed description. */
82    public static final String STATE_STRING_LOADING_FROM_BUFFER_FAILED
83    = "loading from local buffer failed";
84   
85    /** Loading into memory code. */
86    public static final int STATE_CODE_LOADING_INTO_MEMORY = 9;
87   
88    /** Loading into memory description. */
89    public static final String STATE_STRING_LOADING_INTO_MEMORY = "loading into memory";
90   
91    /** Loading into memory failed code. */
92    public static final int STATE_CODE_LOADING_INTO_MEMORY_FAILED = 10;
93   
94    /** Loading into memory failed description. */
95    public static final String STATE_STRING_LOADING_INTO_MEMORY_FAILED
96    = "loading into memory failed";
97   
98    /** Completely loaded code. */
99    public static final int STATE_CODE_LOADED = 11;
100   
101    /** Completely loaded description. */
102    public static final String STATE_STRING_LOADED = "loaded";
103   
104    /** Completely loaded code. */
105    public static final int STATE_CODE_DELETED = -1;
106   
107    /** Completely loaded description. */
108    public static final String STATE_STRING_DELETED = "deleted";
109   
110    }