Index: Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/HydraulicBoundaryLocationOutput.cs =================================================================== diff -u -ra5c551a343fee7ea3d7e46dd36c82cf180a1b597 -r8ba742d2139563c9571e32f074c7c4b3077f45ee --- Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/HydraulicBoundaryLocationOutput.cs (.../HydraulicBoundaryLocationOutput.cs) (revision a5c551a343fee7ea3d7e46dd36c82cf180a1b597) +++ Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/HydraulicBoundaryLocationOutput.cs (.../HydraulicBoundaryLocationOutput.cs) (revision 8ba742d2139563c9571e32f074c7c4b3077f45ee) @@ -97,9 +97,9 @@ public CalculationConvergence CalculationConvergence { get; } /// - /// Gets the general illustration points result. + /// Gets the general results with the submechanism illustration points. /// - public GeneralResult GeneralResult { get; private set; } + public GeneralResultSubMechanismIllustrationPoint GeneralResultSubMechanismIllustrationPoint { get; private set; } /// /// Gets the value indicating whether the output contains illustration points. @@ -108,23 +108,23 @@ { get { - return GeneralResult != null; + return GeneralResultSubMechanismIllustrationPoint != null; } } /// - /// Sets the general result of the illustration points. + /// Sets the general result with the submechanism illustration points. /// - /// The general result to set. - /// Thrown when + /// + /// Thrown when /// is null. - public void SetIllustrationPoints(GeneralResult generalResult) + public void SetIllustrationPoints(GeneralResultSubMechanismIllustrationPoint generalResultSubMechanismIllustrationPoint) { - if (generalResult == null) + if (generalResultSubMechanismIllustrationPoint == null) { - throw new ArgumentNullException(nameof(generalResult)); + throw new ArgumentNullException(nameof(generalResultSubMechanismIllustrationPoint)); } - GeneralResult = generalResult; + GeneralResultSubMechanismIllustrationPoint = generalResultSubMechanismIllustrationPoint; } } } \ No newline at end of file