(final String line)
| 3473 | } |
| 3474 | |
| 3475 | private void parseFavoredClassLine(final String line) |
| 3476 | { |
| 3477 | String favClass = EntityEncoder.decode(line.substring(IOConstants.TAG_FAVOREDCLASS.length() + 1)); |
| 3478 | PCClass cl = |
| 3479 | Globals.getContext().getReferenceContext().silentlyGetConstructedCDOMObject(PCClass.class, favClass); |
| 3480 | if (cl != null) |
| 3481 | { |
| 3482 | thePC.addFavoredClass(cl, thePC); |
| 3483 | } |
| 3484 | } |
| 3485 | |
| 3486 | /* |
| 3487 | * ############################################################### |
no test coverage detected