}
Iterator<Map.Entry<String, List<String>>> ruleFlorGroupsIterator = uniqueRuleFlowNames.entrySet().iterator();
while(ruleFlorGroupsIterator.hasNext()) {
Map.Entry<String, List<String>> entry = ruleFlorGroupsIterator.next();
final RefactoringStringPageRow row = new RefactoringStringPageRow();
row.setValue(entry.getKey() + "||" + entry.getValue().toString());
result.add(row);
}
return result;
}