// STANDARD CLUSTER SEGMENT
// highlight all ring segments in this clustering and this cluster
//
// highlight all corresponding ring Segments
for(Entry<Segment, List<Element>> entry : segmentToElements.entrySet()) {
Segment other = entry.getKey();
// Same cluster in same clustering?
if(other.get(ringid) != segment.get(ringid)) {
continue;
}
Element ringSegment = entry.getValue().get(ringid);
SVGUtil.addCSSClass(ringSegment, CLR_HOVER_CLASS);
}