Index: Riskeer/Common/src/Riskeer.Common.Forms/PropertyClasses/DesignWaterLevelCalculationsProperties.cs
===================================================================
diff -u -r2d9d5de4880ea9d1341b820174515aa07ad45752 -r478f7a756202ca66d437beecc9ccedf53f6a2214
--- Riskeer/Common/src/Riskeer.Common.Forms/PropertyClasses/DesignWaterLevelCalculationsProperties.cs (.../DesignWaterLevelCalculationsProperties.cs) (revision 2d9d5de4880ea9d1341b820174515aa07ad45752)
+++ Riskeer/Common/src/Riskeer.Common.Forms/PropertyClasses/DesignWaterLevelCalculationsProperties.cs (.../DesignWaterLevelCalculationsProperties.cs) (revision 478f7a756202ca66d437beecc9ccedf53f6a2214)
@@ -39,8 +39,8 @@
///
/// Creates a new instance of .
///
- protected DesignWaterLevelCalculationsProperties(IObservableEnumerable hydraulicBoundaryLocationCalculations)
- : base(hydraulicBoundaryLocationCalculations) {}
+ protected DesignWaterLevelCalculationsProperties(IObservableEnumerable calculationsForTargetProbability)
+ : base(calculationsForTargetProbability) {}
[TypeConverter(typeof(ExpandableArrayConverter))]
[ResourcesCategory(typeof(Resources), nameof(Resources.Categories_General))]
Index: Riskeer/Common/src/Riskeer.Common.Forms/PropertyClasses/HydraulicBoundaryLocationCalculationsProperties.cs
===================================================================
diff -u -rdc16427d1cae3e6b9e09ddf1dabf01c2f024a8ce -r478f7a756202ca66d437beecc9ccedf53f6a2214
--- Riskeer/Common/src/Riskeer.Common.Forms/PropertyClasses/HydraulicBoundaryLocationCalculationsProperties.cs (.../HydraulicBoundaryLocationCalculationsProperties.cs) (revision dc16427d1cae3e6b9e09ddf1dabf01c2f024a8ce)
+++ Riskeer/Common/src/Riskeer.Common.Forms/PropertyClasses/HydraulicBoundaryLocationCalculationsProperties.cs (.../HydraulicBoundaryLocationCalculationsProperties.cs) (revision 478f7a756202ca66d437beecc9ccedf53f6a2214)
@@ -27,29 +27,29 @@
namespace Riskeer.Common.Forms.PropertyClasses
{
///
- /// ViewModel of a collection of for properties panel.
+ /// ViewModel of a for properties panel.
///
- public abstract class HydraulicBoundaryLocationCalculationsProperties : ObjectProperties>, IDisposable
+ public abstract class HydraulicBoundaryLocationCalculationsProperties : ObjectProperties, IDisposable
{
private readonly RecursiveObserver, HydraulicBoundaryLocationCalculation> hydraulicBoundaryLocationCalculationsObserver;
///
/// Creates a new instance of .
///
- /// The collection of hydraulic boundary location calculations to set as data.
- /// Thrown when is null.
- protected HydraulicBoundaryLocationCalculationsProperties(IObservableEnumerable hydraulicBoundaryLocationCalculations)
+ /// The hydraulic boundary location calculations to set as data.
+ /// Thrown when is null.
+ protected HydraulicBoundaryLocationCalculationsProperties(HydraulicBoundaryLocationCalculationsForTargetProbability calculationsForTargetProbability)
{
- if (hydraulicBoundaryLocationCalculations == null)
+ if (calculationsForTargetProbability == null)
{
- throw new ArgumentNullException(nameof(hydraulicBoundaryLocationCalculations));
+ throw new ArgumentNullException(nameof(calculationsForTargetProbability));
}
- Data = hydraulicBoundaryLocationCalculations;
+ Data = calculationsForTargetProbability;
hydraulicBoundaryLocationCalculationsObserver = new RecursiveObserver, HydraulicBoundaryLocationCalculation>(OnRefreshRequired, hblc => hblc)
{
- Observable = hydraulicBoundaryLocationCalculations
+ Observable = calculationsForTargetProbability.HydraulicBoundaryLocationCalculations
};
}
Index: Riskeer/Common/src/Riskeer.Common.Forms/PropertyClasses/WaveHeightCalculationsProperties.cs
===================================================================
diff -u -r2d9d5de4880ea9d1341b820174515aa07ad45752 -r478f7a756202ca66d437beecc9ccedf53f6a2214
--- Riskeer/Common/src/Riskeer.Common.Forms/PropertyClasses/WaveHeightCalculationsProperties.cs (.../WaveHeightCalculationsProperties.cs) (revision 2d9d5de4880ea9d1341b820174515aa07ad45752)
+++ Riskeer/Common/src/Riskeer.Common.Forms/PropertyClasses/WaveHeightCalculationsProperties.cs (.../WaveHeightCalculationsProperties.cs) (revision 478f7a756202ca66d437beecc9ccedf53f6a2214)
@@ -39,8 +39,8 @@
///
/// Creates a new instance of .
///
- protected WaveHeightCalculationsProperties(IObservableEnumerable hydraulicBoundaryLocationCalculations)
- : base(hydraulicBoundaryLocationCalculations) {}
+ protected WaveHeightCalculationsProperties(IObservableEnumerable calculationsForTargetProbability)
+ : base(calculationsForTargetProbability) {}
[TypeConverter(typeof(ExpandableArrayConverter))]
[ResourcesCategory(typeof(Resources), nameof(Resources.Categories_General))]
Index: Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/DesignWaterLevelCalculationsPropertiesTest.cs
===================================================================
diff -u -r2d9d5de4880ea9d1341b820174515aa07ad45752 -r478f7a756202ca66d437beecc9ccedf53f6a2214
--- Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/DesignWaterLevelCalculationsPropertiesTest.cs (.../DesignWaterLevelCalculationsPropertiesTest.cs) (revision 2d9d5de4880ea9d1341b820174515aa07ad45752)
+++ Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/DesignWaterLevelCalculationsPropertiesTest.cs (.../DesignWaterLevelCalculationsPropertiesTest.cs) (revision 478f7a756202ca66d437beecc9ccedf53f6a2214)
@@ -90,8 +90,8 @@
private class TestDesignWaterLevelCalculationsProperties : DesignWaterLevelCalculationsProperties
{
- public TestDesignWaterLevelCalculationsProperties(IObservableEnumerable hydraulicBoundaryLocationCalculations)
- : base(hydraulicBoundaryLocationCalculations) {}
+ public TestDesignWaterLevelCalculationsProperties(IObservableEnumerable calculationsForTargetProbability)
+ : base(calculationsForTargetProbability) {}
}
}
}
\ No newline at end of file
Index: Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/HydraulicBoundaryLocationCalculationsPropertiesTest.cs
===================================================================
diff -u -r1cbbb2310c2dd1270825700be09b51c5f321cfd2 -r478f7a756202ca66d437beecc9ccedf53f6a2214
--- Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/HydraulicBoundaryLocationCalculationsPropertiesTest.cs (.../HydraulicBoundaryLocationCalculationsPropertiesTest.cs) (revision 1cbbb2310c2dd1270825700be09b51c5f321cfd2)
+++ Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/HydraulicBoundaryLocationCalculationsPropertiesTest.cs (.../HydraulicBoundaryLocationCalculationsPropertiesTest.cs) (revision 478f7a756202ca66d437beecc9ccedf53f6a2214)
@@ -107,8 +107,8 @@
private class TestHydraulicBoundaryLocationCalculationsProperties : HydraulicBoundaryLocationCalculationsProperties
{
- public TestHydraulicBoundaryLocationCalculationsProperties(IObservableEnumerable hydraulicBoundaryLocationCalculations)
- : base(hydraulicBoundaryLocationCalculations) {}
+ public TestHydraulicBoundaryLocationCalculationsProperties(IObservableEnumerable calculationsForTargetProbability)
+ : base(calculationsForTargetProbability) {}
}
}
}
\ No newline at end of file
Index: Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/WaveHeightCalculationsPropertiesTest.cs
===================================================================
diff -u -r2d9d5de4880ea9d1341b820174515aa07ad45752 -r478f7a756202ca66d437beecc9ccedf53f6a2214
--- Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/WaveHeightCalculationsPropertiesTest.cs (.../WaveHeightCalculationsPropertiesTest.cs) (revision 2d9d5de4880ea9d1341b820174515aa07ad45752)
+++ Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/WaveHeightCalculationsPropertiesTest.cs (.../WaveHeightCalculationsPropertiesTest.cs) (revision 478f7a756202ca66d437beecc9ccedf53f6a2214)
@@ -90,8 +90,8 @@
private class TestWaveHeightCalculationsProperties : WaveHeightCalculationsProperties
{
- public TestWaveHeightCalculationsProperties(IObservableEnumerable hydraulicBoundaryLocationCalculations)
- : base(hydraulicBoundaryLocationCalculations) {}
+ public TestWaveHeightCalculationsProperties(IObservableEnumerable calculationsForTargetProbability)
+ : base(calculationsForTargetProbability) {}
}
}
}
\ No newline at end of file