private Map<String, Map<String, Set<JiggReportData>>> generateReportData(
List<TakstolInterface> takstoler, Periode periode) {
Map<String, Map<String, Set<JiggReportData>>> reportMap = new Hashtable<String, Map<String, Set<JiggReportData>>>();
for (TakstolInterface takstol : takstoler) {
TakstolAllV takstolAllV = (TakstolAllV) takstol;
addMainLine(takstolAllV, reportMap, periode);
addRelatedLines(takstolAllV.getRelatedArticles(), periode,
reportMap);
}
return reportMap;
}