Commit 261e35aa authored by Riegel's avatar Riegel
Browse files

Fix: Add missing getter functions

parent a279701f
Showing with 8 additions and 0 deletions
+8 -0
......@@ -126,4 +126,8 @@ public class BuildingUnit extends AbstractBuildingSubdivision {
}
this.abs = originalBu.abs;
}
public List<Storey> getStoreys() {
return storeys;
}
}
......@@ -125,4 +125,8 @@ public class Storey extends AbstractBuildingSubdivision {
}
this.abs = originalSt.abs;
}
public List<BuildingUnit> getBuildingUnits() {
return buildingUnits;
}
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment