|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| DependencyStateDescriptions | 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-2010, 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.common; | |
| 17 | ||
| 18 | /** | |
| 19 | * This interface provides constants of this package. | |
| 20 | * | |
| 21 | * @version $Revision: 1.1 $ | |
| 22 | * @author Michael Meyling | |
| 23 | */ | |
| 24 | public interface DependencyStateDescriptions { | |
| 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_REQUIRED_MODULES = 11; | |
| 34 | ||
| 35 | /** Loading required modules description. */ | |
| 36 | public static final String STATE_STRING_LOADING_REQUIRED_MODULES = "loading required modules"; | |
| 37 | ||
| 38 | /** Loading required modules failed code. */ | |
| 39 | public static final int STATE_CODE_LOADING_REQUIRED_MODULES_FAILED = 12; | |
| 40 | ||
| 41 | /** Loading required modules failed description. */ | |
| 42 | public static final String STATE_STRING_LOADING_REQUIRED_MODULES_FAILED | |
| 43 | = "loading required modules failed"; | |
| 44 | ||
| 45 | /** Loading required modules of required modules code. */ | |
| 46 | public static final int STATE_CODE_LOADING_REQUIRED_REQUIREMENTS = 13; | |
| 47 | ||
| 48 | /** Loading required modules of required modules failed description. */ | |
| 49 | public static final String STATE_STRING_LOADING_REQUIRED_REQUIREMENTS_FAILED | |
| 50 | = "loading required modules of required modules failed"; | |
| 51 | ||
| 52 | /** Loaded required modules code. */ | |
| 53 | public static final int STATE_CODE_LOADED_REQUIRED_MODULES = 15; | |
| 54 | ||
| 55 | /** Loaded required modules description. */ | |
| 56 | public static final String STATE_STRING_LOADED_REQUIRED_MODULES = "loaded required modules"; | |
| 57 | ||
| 58 | } | |
|
||||||||||