LoadingImportsStateDescriptions.java
01 /* This file is part of the project "Hilbert II" - http://www.qedeq.org
02  *
03  * Copyright 2000-2013,  Michael Meyling <mime@qedeq.org>.
04  *
05  * "Hilbert II" is free software; you can redistribute
06  * it and/or modify it under the terms of the GNU General Public
07  * License as published by the Free Software Foundation; either
08  * version 2 of the License, or (at your option) any later version.
09  *
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 }