Map<Integer, List<AnnotationFS>> map = rerm.getMap();
Set<Entry<Integer, List<AnnotationFS>>> entrySet = map.entrySet();
List<DebugRuleElementMatches> ruleElementMatches = new ArrayList<DebugRuleElementMatches>();
for (Entry<Integer, List<AnnotationFS>> entry : entrySet) {
DebugRuleElementMatches drems = new DebugRuleElementMatches(cas);
RegExpRule rule = rerm.getRule();
Integer key = entry.getKey();
List<AnnotationFS> value = entry.getValue();
drems.setElement(verbalizer.verbalize(rule));
List<DebugRuleElementMatch> remList = new ArrayList<DebugRuleElementMatch>();
if (value != null) {