Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Data/HydraulicBoundaryLocation.cs
===================================================================
diff -u -r98fc85d8cecf9edae9fe7c1f2f47b60ecda5e187 -r3ba0c50f3a3548264d60e9f347079d0586c53f28
--- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Data/HydraulicBoundaryLocation.cs (.../HydraulicBoundaryLocation.cs) (revision 98fc85d8cecf9edae9fe7c1f2f47b60ecda5e187)
+++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Data/HydraulicBoundaryLocation.cs (.../HydraulicBoundaryLocation.cs) (revision 3ba0c50f3a3548264d60e9f347079d0586c53f28)
@@ -25,6 +25,9 @@
{
public class HydraulicBoundaryLocation
{
+ ///
+ /// Creates a new instance ofL , with the given , , , and .
+ ///
public HydraulicBoundaryLocation(long id, string name, double x, double y)
{
Id = id;
@@ -43,10 +46,14 @@
public string Name { get; private set; }
///
- /// Gets the X-coordinate of .
+ /// Gets the coordinates of .
///
- public Point2D Location { get; set; }
+ public Point2D Location { get; private set; }
+ ///
+ /// Returns a String that represents the current Object.
+ ///
+ /// A String that represents the current Object.
public override string ToString()
{
return Name;