(FactKey<FT> key)
| 379 | } |
| 380 | |
| 381 | public final <FT> FT getResolved(FactKey<FT> key) |
| 382 | { |
| 383 | if (factChar == null) |
| 384 | { |
| 385 | return null; |
| 386 | } |
| 387 | @SuppressWarnings("unchecked") |
| 388 | Indirect<FT> indirect = (Indirect<FT>) factChar.get(key); |
| 389 | if (indirect == null) |
| 390 | { |
| 391 | return null; |
| 392 | } |
| 393 | return indirect.get(); |
| 394 | } |
| 395 | |
| 396 | public final <FT> FT put(FactKey<FT> key, Indirect<FT> value) |
| 397 | { |
no test coverage detected