Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/HydraulicBoundaryLocationProperties.cs =================================================================== diff -u -re4be9975bbab17c9707126068ea0805f40a70853 -rf7a8b974c53946b8cb443d359e2c6235583dd36f --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/HydraulicBoundaryLocationProperties.cs (.../HydraulicBoundaryLocationProperties.cs) (revision e4be9975bbab17c9707126068ea0805f40a70853) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/HydraulicBoundaryLocationProperties.cs (.../HydraulicBoundaryLocationProperties.cs) (revision f7a8b974c53946b8cb443d359e2c6235583dd36f) @@ -95,7 +95,7 @@ [DynamicVisibleValidationMethod] public bool DynamicVisibleValidationMethod(string propertyName) { - bool hasGeneralIllustrationPointsResult = GetGeneralResultSubMechanismIllustrationPoints() != null; + bool hasGeneralIllustrationPointsResult = GetGeneralResult() != null; if (propertyName == nameof(GoverningWindDirection) || propertyName == nameof(AlphaValues) || propertyName == nameof(Durations) @@ -152,7 +152,7 @@ { get { - return GetGeneralResultSubMechanismIllustrationPoints().GoverningWindDirection.Name; + return GetGeneralResult().GoverningWindDirection.Name; } } @@ -167,7 +167,7 @@ { get { - return GetGeneralResultSubMechanismIllustrationPoints().Stochasts.ToArray(); + return GetGeneralResult().Stochasts.ToArray(); } } @@ -182,7 +182,7 @@ { get { - return GetGeneralResultSubMechanismIllustrationPoints().Stochasts.ToArray(); + return GetGeneralResult().Stochasts.ToArray(); } } @@ -197,7 +197,7 @@ get { IEnumerable topLevelIllustrationPoints = - GetGeneralResultSubMechanismIllustrationPoints().TopLevelIllustrationPoints.ToArray(); + GetGeneralResult().TopLevelIllustrationPoints.ToArray(); IEnumerable closingSituations = topLevelIllustrationPoints.Select(s => s.ClosingSituation); @@ -207,11 +207,11 @@ } /// - /// Gets the general result with the sub mechanism illustration points result. + /// Gets the general result with the illustration points result. /// /// The general illustration points if it has obtained as part of the calculation, null /// otherwise. - protected abstract GeneralResult GetGeneralResultSubMechanismIllustrationPoints(); + protected abstract GeneralResult GetGeneralResult(); public override string ToString() {