First implementation of CompetitorAndBoatStore (name is still CompetitorStore to minimize merge conflicts)

including persistence for boats and the new 'id' field of each boat.
Will add more tests now.
This commit is contained in:
fmittag
2016-08-12 16:27:01 +02:00
parent 74f43331a2
commit 5d7e3180e2
50 changed files with 789 additions and 191 deletions
@@ -272,7 +272,7 @@ public class StructureImporter {
}
private DynamicBoat createBoat(String name, Boat boat, BoatClass boatClass) {
DynamicBoat boat1 = new BoatImpl(name + " boat", boatClass, boat.getSailNumber());
DynamicBoat boat1 = new BoatImpl(name + " boat", name + " boat", boatClass, boat.getSailNumber());
return boat1;
}