Collects data from world to be included in the legend
()
| 132 | * Collects data from world to be included in the legend |
| 133 | */ |
| 134 | private void prepareLegendEntries(){ |
| 135 | legendEntries = new LinkedList<>(); |
| 136 | |
| 137 | if(isIncludePathColors()){ |
| 138 | prepareLegendEntriesPathColors(); |
| 139 | } |
| 140 | if(isIncludePlaceGroups()){ |
| 141 | prepareLegendEntriesPlaceGroups(); |
| 142 | } |
| 143 | if(isIncludeInformationColors()){ |
| 144 | prepareLegendEntriesInformationColors(); |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | /** |
| 149 | * Collects path color entries |
no test coverage detected