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