01 /* This file is part of the project "Hilbert II" - http://www.qedeq.org
02 *
03 * Copyright 2000-2014, 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 * @author Michael Meyling
22 */
23 public interface LoadingImportsStateDescriptions {
24
25 /** Undefined state code. */
26 public static final int STATE_CODE_UNDEFINED = 0;
27
28 /** Undefined state description. */
29 public static final String STATE_STRING_UNDEFINED = "undefined";
30
31 /** Loading imported modules code. */
32 public static final int STATE_CODE_LOADING_IMPORTS = 12;
33
34 /** Loading imported modules description. */
35 public static final String STATE_STRING_LOADING_IMPORTS = "loading imported modules";
36
37 /** Loading imported modules failure code. */
38 public static final int STATE_CODE_LOADING_IMPORTS_FAILED = 13;
39
40 /** Loading imported modules failure description. */
41 public static final String STATE_STRING_LOADING_IMPORTS_FAILED
42 = "loading imported modules failed";
43
44 /** Loading imported modules code. */
45 public static final int STATE_CODE_LOADED_IMPORTED_MODULES = 14;
46
47 /** Loading imported modules description. */
48 public static final String STATE_STRING_LOADED_IMPORTED_MODULES
49 = "loaded imported modules";
50
51 }
|