| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
package org.qedeq.kernel.bo.logic.wf; |
| 17 |
|
|
| 18 |
|
import org.qedeq.kernel.common.ErrorCodes; |
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
@author |
| 24 |
|
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 0 |
Complexity Density: - |
|
| 25 |
|
public interface FormulaBasicErrors extends ErrorCodes { |
| 26 |
|
|
| 27 |
|
|
| 28 |
|
public static final int ELEMENT_MUST_NOT_BE_NULL = 30400; |
| 29 |
|
|
| 30 |
|
|
| 31 |
|
public static final String ELEMENT_MUST_NOT_BE_NULL_TEXT |
| 32 |
|
= "element must not be null"; |
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
public static final int ATOM_MUST_NOT_BE_NULL = 30410; |
| 37 |
|
|
| 38 |
|
|
| 39 |
|
public static final String ATOM_MUST_NOT_BE_NULL_TEXT |
| 40 |
|
= "atom must not be null"; |
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
public static final int LIST_MUST_NOT_BE_NULL = 30420; |
| 45 |
|
|
| 46 |
|
|
| 47 |
|
public static final String LIST_MUST_NOT_BE_NULL_TEXT |
| 48 |
|
= "list must not be null"; |
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
public static final int ATOM_CONTENT_MUST_NOT_BE_NULL = 30430; |
| 53 |
|
|
| 54 |
|
|
| 55 |
|
public static final String ATOM_CONTENT_MUST_NOT_BE_NULL_TEXT |
| 56 |
|
= "atom content must not be null"; |
| 57 |
|
|
| 58 |
|
|
| 59 |
|
|
| 60 |
|
public static final int ATOM_CONTENT_MUST_NOT_BE_EMPTY = 30440; |
| 61 |
|
|
| 62 |
|
|
| 63 |
|
public static final String ATOM_CONTENT_MUST_NOT_BE_EMPTY_TEXT |
| 64 |
|
= "atom content must not be empty"; |
| 65 |
|
|
| 66 |
|
|
| 67 |
|
|
| 68 |
|
public static final int OPERATOR_CONTENT_MUST_NOT_BE_NULL = 30450; |
| 69 |
|
|
| 70 |
|
|
| 71 |
|
public static final String OPERATOR_CONTENT_MUST_NOT_BE_NULL_TEXT |
| 72 |
|
= "operator content must not be null"; |
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
public static final int OPERATOR_CONTENT_MUST_NOT_BE_EMPTY = 30460; |
| 77 |
|
|
| 78 |
|
|
| 79 |
|
public static final String OPERATOR_CONTENT_MUST_NOT_BE_EMPTY_TEXT |
| 80 |
|
= "operator content must not be empty"; |
| 81 |
|
|
| 82 |
|
|
| 83 |
|
|
| 84 |
|
public static final int LIST_EXPECTED = 30470; |
| 85 |
|
|
| 86 |
|
|
| 87 |
|
public static final String LIST_EXPECTED_TEXT |
| 88 |
|
= "an atom is no formula"; |
| 89 |
|
|
| 90 |
|
|
| 91 |
|
|
| 92 |
|
public static final int UNKNOWN_LOGICAL_OPERATOR = 30530; |
| 93 |
|
|
| 94 |
|
|
| 95 |
|
public static final String UNKNOWN_LOGICAL_OPERATOR_TEXT = |
| 96 |
|
"this logical operator is unknown: "; |
| 97 |
|
|
| 98 |
|
|
| 99 |
|
|
| 100 |
|
public static final int SUBJECT_VARIABLE_EXPECTED = 30540; |
| 101 |
|
|
| 102 |
|
|
| 103 |
|
public static final String SUBJECT_VARIABLE_EXPECTED_TEXT |
| 104 |
|
= "subject variable expected"; |
| 105 |
|
|
| 106 |
|
|
| 107 |
|
|
| 108 |
|
public static final int SUBJECT_VARIABLE_ALREADY_BOUND_IN_FORMULA = 30550; |
| 109 |
|
|
| 110 |
|
|
| 111 |
|
public static final String SUBJECT_VARIABLE_ALREADY_BOUND_IN_FORMULA_TEXT |
| 112 |
|
= "subject variable is already bound in sub formula"; |
| 113 |
|
|
| 114 |
|
|
| 115 |
|
|
| 116 |
|
public static final int SUBJECT_VARIABLE_OCCURS_NOT_IN_RESTRICTION_FORMULA = 30560; |
| 117 |
|
|
| 118 |
|
|
| 119 |
|
public static final String SUBJECT_VARIABLE_OCCURS_NOT_IN_RESTRICTION_FORMULA_TEXT |
| 120 |
|
= "subject variable occurs not in restriction formula"; |
| 121 |
|
|
| 122 |
|
|
| 123 |
|
|
| 124 |
|
public static final int EQUALITY_PREDICATE_NOT_YET_DEFINED = 30570; |
| 125 |
|
|
| 126 |
|
|
| 127 |
|
public static final String EQUALITY_PREDICATE_NOT_YET_DEFINED_TEXT |
| 128 |
|
= "the equality predicate was not yet defined"; |
| 129 |
|
|
| 130 |
|
|
| 131 |
|
|
| 132 |
|
public static final int UNKNOWN_PREDICATE_CONSTANT = 30590; |
| 133 |
|
|
| 134 |
|
|
| 135 |
|
public static final String UNKNOWN_PREDICATE_CONSTANT_TEXT |
| 136 |
|
= "this predicate constant is unknown (at least for this argument number): "; |
| 137 |
|
|
| 138 |
|
|
| 139 |
|
|
| 140 |
|
public static final int UNKNOWN_TERM_OPERATOR = 30620; |
| 141 |
|
|
| 142 |
|
|
| 143 |
|
public static final String UNKNOWN_TERM_OPERATOR_TEXT |
| 144 |
|
= "unknown term operator: "; |
| 145 |
|
|
| 146 |
|
|
| 147 |
|
|
| 148 |
|
public static final int CLASS_OPERATOR_STILL_UNKNOWN = 30680; |
| 149 |
|
|
| 150 |
|
|
| 151 |
|
public static final String CLASS_OPERATOR_STILL_UNKNOWN_TEXT |
| 152 |
|
= "the class operator is still undefined"; |
| 153 |
|
|
| 154 |
|
|
| 155 |
|
|
| 156 |
|
public static final int UNKNOWN_FUNCTION_CONSTANT = 30690; |
| 157 |
|
|
| 158 |
|
|
| 159 |
|
public static final String UNKNOWN_FUNCTION_CONSTANT_TEXT |
| 160 |
|
= "this function constant is unknown (at least for this argument number): "; |
| 161 |
|
|
| 162 |
|
|
| 163 |
|
|
| 164 |
|
public static final int EXACTLY_ONE_ARGUMENT_EXPECTED = 30710; |
| 165 |
|
|
| 166 |
|
|
| 167 |
|
public static final String EXACTLY_ONE_ARGUMENT_EXPECTED_TEXT |
| 168 |
|
= "exactly one argument expected for the operator "; |
| 169 |
|
|
| 170 |
|
|
| 171 |
|
|
| 172 |
|
public static final int AT_LEAST_ONE_ARGUMENT_EXPECTED = 30720; |
| 173 |
|
|
| 174 |
|
|
| 175 |
|
public static final String AT_LEAST_ONE_ARGUMENT_EXPECTED_TEXT |
| 176 |
|
= "at least one argument expected for "; |
| 177 |
|
|
| 178 |
|
|
| 179 |
|
|
| 180 |
|
public static final int FIRST_ARGUMENT_MUST_BE_AN_ATOM = 30730; |
| 181 |
|
|
| 182 |
|
|
| 183 |
|
public static final String FIRST_ARGUMENT_MUST_BE_AN_ATOM_TEXT |
| 184 |
|
= "first argument must be an atom"; |
| 185 |
|
|
| 186 |
|
|
| 187 |
|
|
| 188 |
|
public static final int MORE_THAN_ONE_ARGUMENT_EXPECTED = 30740; |
| 189 |
|
|
| 190 |
|
|
| 191 |
|
public static final String MORE_THAN_ONE_ARGUMENT_EXPECTED_TEXT |
| 192 |
|
= "more than one argument expected for the operator "; |
| 193 |
|
|
| 194 |
|
|
| 195 |
|
|
| 196 |
|
public static final int EXACTLY_TWO_OR_THREE_ARGUMENTS_EXPECTED = 30750; |
| 197 |
|
|
| 198 |
|
|
| 199 |
|
public static final String EXACTLY_TWO_OR_THREE_ARGUMENTS_EXPECTED_TEXT |
| 200 |
|
= "exactly two or three arguments expected"; |
| 201 |
|
|
| 202 |
|
|
| 203 |
|
|
| 204 |
|
public static final int EXACTLY_TWO_ARGUMENTS_EXPECTED = 30760; |
| 205 |
|
|
| 206 |
|
|
| 207 |
|
public static final String EXACTLY_TWO_ARGUMENTS_EXPECTED_TEXT |
| 208 |
|
= "exactly two or three arguments expected"; |
| 209 |
|
|
| 210 |
|
|
| 211 |
|
|
| 212 |
|
public static final int BOUND_VARIABLE_ALREADY_FREE = 30770; |
| 213 |
|
|
| 214 |
|
|
| 215 |
|
public static final String BOUND_VARIABLE_ALREADY_FREE_TEXT |
| 216 |
|
= "these bound variables are already free in previous formulas: "; |
| 217 |
|
|
| 218 |
|
|
| 219 |
|
|
| 220 |
|
public static final int FREE_VARIABLE_ALREADY_BOUND = 30780; |
| 221 |
|
|
| 222 |
|
|
| 223 |
|
public static final String FREE_VARIABLE_ALREADY_BOUND_TEXT |
| 224 |
|
= "these free variables were already bound in previous formulas: "; |
| 225 |
|
|
| 226 |
|
|
| 227 |
|
} |