Skip to content

sorinmiroiu97/Tree-for-reports

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Reports tree project

The code basically reads a .txt file and creates a tree containig 3 items (a cycle item, a report group item and a report item). The cycle items represents a node that contains a list of report group items nodes that contains a report items nodes. I stored everything in a single map, this one: Map<CycleTreeItem, Map<ReportGroupTreeItem, HashSet>> cycleItemsMap. The map has an key of CycleTreeItem type with a map (Map<ReportGroupTreeItem, HashSet> reportGroupItemsMap) as value, which map has as value a hashset (HashSet reportItemsMap). I've overriden the equals and the hashcode methods in order for this trick to work.

About

Reports tree project

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages