(final String aKey)
| 355 | * construction of the PCClassLevel |
| 356 | */ |
| 357 | public final SubClass getSubClassKeyed(final String aKey) |
| 358 | { |
| 359 | List<SubClass> subClassList = getListFor(ListKey.SUB_CLASS); |
| 360 | if (subClassList == null) |
| 361 | { |
| 362 | return null; |
| 363 | } |
| 364 | |
| 365 | for (SubClass subClass : subClassList) |
| 366 | { |
| 367 | if (subClass.getKeyName().equals(aKey)) |
| 368 | { |
| 369 | return subClass; |
| 370 | } |
| 371 | } |
| 372 | |
| 373 | return null; |
| 374 | } |
| 375 | |
| 376 | /* |
| 377 | * FINALPCCLASSONLY This is really an item that the PCClass knows, and then the |
no test coverage detected