Index: Riskeer/Common/src/Riskeer.Common.Data/AssessmentSection/AssessmentSectionExtensions.cs
===================================================================
diff -u -r787256a33f37778f3af02aa20c9a770deaeefa0d -r552512346182908793906e5195f4aec36bc5039b
--- Riskeer/Common/src/Riskeer.Common.Data/AssessmentSection/AssessmentSectionExtensions.cs (.../AssessmentSectionExtensions.cs) (revision 787256a33f37778f3af02aa20c9a770deaeefa0d)
+++ Riskeer/Common/src/Riskeer.Common.Data/AssessmentSection/AssessmentSectionExtensions.cs (.../AssessmentSectionExtensions.cs) (revision 552512346182908793906e5195f4aec36bc5039b)
@@ -124,10 +124,10 @@
switch (normativeProbabilityType)
{
case NormativeProbabilityType.SignalFloodingProbability:
- calculations = assessmentSection.WaterLevelCalculationsForSignalingNorm;
+ calculations = assessmentSection.WaterLevelCalculationsForSignalFloodingProbability;
break;
case NormativeProbabilityType.MaximumAllowableFloodingProbability:
- calculations = assessmentSection.WaterLevelCalculationsForLowerLimitNorm;
+ calculations = assessmentSection.WaterLevelCalculationsForMaximumAllowableFloodingProbability;
break;
default:
throw new NotSupportedException();
Index: Riskeer/Common/src/Riskeer.Common.Data/AssessmentSection/IAssessmentSection.cs
===================================================================
diff -u -r19e6d4ac96b28f25e8f2a5c0f164118dd0a05c0d -r552512346182908793906e5195f4aec36bc5039b
--- Riskeer/Common/src/Riskeer.Common.Data/AssessmentSection/IAssessmentSection.cs (.../IAssessmentSection.cs) (revision 19e6d4ac96b28f25e8f2a5c0f164118dd0a05c0d)
+++ Riskeer/Common/src/Riskeer.Common.Data/AssessmentSection/IAssessmentSection.cs (.../IAssessmentSection.cs) (revision 552512346182908793906e5195f4aec36bc5039b)
@@ -74,14 +74,14 @@
BackgroundData BackgroundData { get; }
///
- /// Gets the water level calculations corresponding to the signaling norm.
+ /// Gets the water level calculations corresponding to the signal flooding probability.
///
- IObservableEnumerable WaterLevelCalculationsForSignalingNorm { get; }
+ IObservableEnumerable WaterLevelCalculationsForSignalFloodingProbability { get; }
///
- /// Gets the water level calculations corresponding to the lower limit norm.
+ /// Gets the water level calculations corresponding to the maximum allowable flooding probability.
///
- IObservableEnumerable WaterLevelCalculationsForLowerLimitNorm { get; }
+ IObservableEnumerable WaterLevelCalculationsForMaximumAllowableFloodingProbability { get; }
///
/// Gets the water level calculations corresponding to the user defined target probabilities.
Index: Riskeer/Common/src/Riskeer.Common.Forms/Helpers/TargetProbabilityCalculationsDisplayNameHelper.cs
===================================================================
diff -u -r391d022746e1bd895983935af75594fd3b1912d4 -r552512346182908793906e5195f4aec36bc5039b
--- Riskeer/Common/src/Riskeer.Common.Forms/Helpers/TargetProbabilityCalculationsDisplayNameHelper.cs (.../TargetProbabilityCalculationsDisplayNameHelper.cs) (revision 391d022746e1bd895983935af75594fd3b1912d4)
+++ Riskeer/Common/src/Riskeer.Common.Forms/Helpers/TargetProbabilityCalculationsDisplayNameHelper.cs (.../TargetProbabilityCalculationsDisplayNameHelper.cs) (revision 552512346182908793906e5195f4aec36bc5039b)
@@ -60,11 +60,11 @@
var nonUniqueWaterLevelCalculationsDisplayNameLookup = new Dictionary