|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| LogicalStateDescriptions | 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 primitive constants for the {@link LogicalState}. | |
| 20 | * | |
| 21 | * @version $Revision: 1.1 $ | |
| 22 | * @author Michael Meyling | |
| 23 | */ | |
| 24 | public interface LogicalStateDescriptions { | |
| 25 | ||
| 26 | /** Code for unchecked state. */ | |
| 27 | public static final int STATE_CODE_UNCHECKED = 0; | |
| 28 | ||
| 29 | /** Description for unchecked state. */ | |
| 30 | public static final String STATE_STRING_UNCHECKED = "unchecked"; | |
| 31 | ||
| 32 | /** Code for external checking phase. */ | |
| 33 | public static final int STATE_CODE_EXTERNAL_CHECKING = 1; | |
| 34 | ||
| 35 | /** Description for external internal checking phase. */ | |
| 36 | public static final String STATE_STRING_EXTERNAL_CHECKING = "checking imports"; | |
| 37 | ||
| 38 | /** Code for external check failure. */ | |
| 39 | public static final int STATE_CODE_EXTERNAL_CHECKING_FAILED = 2; | |
| 40 | ||
| 41 | /** Description for external check failure. */ | |
| 42 | public static final String STATE_STRING_EXTERNAL_CHECKING_FAILED = "import check failed"; | |
| 43 | ||
| 44 | /** Code for internal checking phase. */ | |
| 45 | public static final int STATE_CODE_INTERNAL_CHECKING = 3; | |
| 46 | ||
| 47 | /** Description for internal checking phase. */ | |
| 48 | public static final String STATE_STRING_INTERNAL_CHECKING = "checking"; | |
| 49 | ||
| 50 | /** Code for check failure. */ | |
| 51 | public static final int STATE_CODE_INTERNAL_CHECKING_FAILED = 4; | |
| 52 | ||
| 53 | /** Description for check failure. */ | |
| 54 | public static final String STATE_STRING_INTERNAL_CHECKING_FAILED = "check failed"; | |
| 55 | ||
| 56 | /** Code for successfully completely checked state. */ | |
| 57 | public static final int STATE_CODE_COMPLETELY_CHECKED = 5; | |
| 58 | ||
| 59 | /** Description for successfully completely checked state. */ | |
| 60 | public static final String STATE_STRING_COMPLETELY_CHECKED = "checked"; | |
| 61 | ||
| 62 | } | |
|
||||||||||