use of net.parostroj.timetable.model.TrainTypeCategory in project grafikon by jub77.
the class LSPenaltyTable method createPenaltyTable.
public List<TrainTypeCategory> createPenaltyTable() throws LSException {
List<TrainTypeCategory> table = new ArrayList<>();
if (this.categories != null) {
for (LSTrainTypeCategory lsCategory : this.categories) {
TrainTypeCategory category = lsCategory.createTrainTypeCategory();
table.add(category);
}
}
return table;
}
Aggregations