}
// check for partial matching pair
StringMatcher sm = new StringMatcher(phPrimaryId, true, false);
if (sm.match(primaryId)) {
sm = new StringMatcher(phSecondaryId, true, false);
if (sm.match(secondaryId)) {
matchingParts.add(new MatchingPart(phPrimaryId,
phSecondaryId, part));
}
}
} else if (part instanceof EditorSashContainer) {