Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/PresentationObjects/ClosingStructuresCalculationContext.cs
===================================================================
diff -u -r94a8faf16d9871c71e343cf4bb5e68531459fb20 -r5e1c552bd6b82241abc970ef95c55b2b1c9169ec
--- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/PresentationObjects/ClosingStructuresCalculationContext.cs (.../ClosingStructuresCalculationContext.cs) (revision 94a8faf16d9871c71e343cf4bb5e68531459fb20)
+++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/PresentationObjects/ClosingStructuresCalculationContext.cs (.../ClosingStructuresCalculationContext.cs) (revision 5e1c552bd6b82241abc970ef95c55b2b1c9169ec)
@@ -29,15 +29,14 @@
namespace Ringtoets.ClosingStructures.Forms.PresentationObjects
{
///
- /// Presentation object for all data required to configure an instance of
- /// in order to prepare it for performing a calculation.
+ /// Presentation object for all data required to configure a closing structures calculation.
///
public class ClosingStructuresCalculationContext : StructuresCalculationContext
{
///
/// Creates a new instance of .
///
- /// The instance wrapped by this context object.
+ /// The calculation instance wrapped by this context object.
/// The that owns the wrapped calculation.
/// The failure mechanism which the calculation belongs to.
/// The assessment section which the calculation belongs to.
Index: Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresCalculation.cs
===================================================================
diff -u -rc59d5c2acab71a0a5f1a179e1a1d394d935ef14b -r5e1c552bd6b82241abc970ef95c55b2b1c9169ec
--- Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresCalculation.cs (.../StructuresCalculation.cs) (revision c59d5c2acab71a0a5f1a179e1a1d394d935ef14b)
+++ Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresCalculation.cs (.../StructuresCalculation.cs) (revision 5e1c552bd6b82241abc970ef95c55b2b1c9169ec)
@@ -28,6 +28,7 @@
///
/// This class holds information about a calculation for a structures failure mechanism.
///
+ /// The type of input contained by the calculation.
public class StructuresCalculation : Observable, IStructuresCalculation, ICalculation where T : IStructuresCalculationInput, new()
{
///
Index: Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresFailureMechanismSectionResult.cs
===================================================================
diff -u -rc59d5c2acab71a0a5f1a179e1a1d394d935ef14b -r5e1c552bd6b82241abc970ef95c55b2b1c9169ec
--- Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresFailureMechanismSectionResult.cs (.../StructuresFailureMechanismSectionResult.cs) (revision c59d5c2acab71a0a5f1a179e1a1d394d935ef14b)
+++ Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresFailureMechanismSectionResult.cs (.../StructuresFailureMechanismSectionResult.cs) (revision 5e1c552bd6b82241abc970ef95c55b2b1c9169ec)
@@ -20,7 +20,6 @@
// All rights reserved.
using System;
-using Ringtoets.Common.Data.Calculation;
using Ringtoets.Common.Data.FailureMechanism;
namespace Ringtoets.Common.Data.Structures
Index: Ringtoets/Common/src/Ringtoets.Common.Forms/PresentationObjects/StructuresCalculationContext.cs
===================================================================
diff -u -r3a9daab3a208eb7bb29a44ad6d5646fe7cf85e11 -r5e1c552bd6b82241abc970ef95c55b2b1c9169ec
--- Ringtoets/Common/src/Ringtoets.Common.Forms/PresentationObjects/StructuresCalculationContext.cs (.../StructuresCalculationContext.cs) (revision 3a9daab3a208eb7bb29a44ad6d5646fe7cf85e11)
+++ Ringtoets/Common/src/Ringtoets.Common.Forms/PresentationObjects/StructuresCalculationContext.cs (.../StructuresCalculationContext.cs) (revision 5e1c552bd6b82241abc970ef95c55b2b1c9169ec)
@@ -29,9 +29,10 @@
namespace Ringtoets.Common.Forms.PresentationObjects
{
///
- /// Presentation object for all data required to configure an instance of
- /// in order to prepare it for performing a calculation.
+ /// Presentation object for all data required to configure a structures calculation.
///
+ /// The type of calculation wrapped by this context.
+ /// The type of failure mechanism which the context belongs to.
public class StructuresCalculationContext : FailureMechanismItemContextBase, TFailureMechanism>,
ICalculationContext, TFailureMechanism>
where TInput : IStructuresCalculationInput, new()
Index: Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PresentationObjects/StructuresCalculationContextTest.cs
===================================================================
diff -u -r3a9daab3a208eb7bb29a44ad6d5646fe7cf85e11 -r5e1c552bd6b82241abc970ef95c55b2b1c9169ec
--- Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PresentationObjects/StructuresCalculationContextTest.cs (.../StructuresCalculationContextTest.cs) (revision 3a9daab3a208eb7bb29a44ad6d5646fe7cf85e11)
+++ Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PresentationObjects/StructuresCalculationContextTest.cs (.../StructuresCalculationContextTest.cs) (revision 5e1c552bd6b82241abc970ef95c55b2b1c9169ec)
@@ -41,7 +41,7 @@
var assessmentSection = mocksRepository.Stub();
mocksRepository.ReplayAll();
- var calculation = new StructuresCalculation();
+ var calculation = new TestStructuresCalculation();
var failureMechanism = new TestFailureMechanism();
var parent = new CalculationGroup();
@@ -66,7 +66,7 @@
var assessmentSection = mockRepository.Stub();
mockRepository.ReplayAll();
- var calculation = new StructuresCalculation();
+ var calculation = new TestStructuresCalculation();
var failureMechanism = new TestFailureMechanism();
// Call
Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresCalculationContext.cs
===================================================================
diff -u -r9fe25ebfb1f70f00d66564ef2a89f6e22c27dce4 -r5e1c552bd6b82241abc970ef95c55b2b1c9169ec
--- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresCalculationContext.cs (.../HeightStructuresCalculationContext.cs) (revision 9fe25ebfb1f70f00d66564ef2a89f6e22c27dce4)
+++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresCalculationContext.cs (.../HeightStructuresCalculationContext.cs) (revision 5e1c552bd6b82241abc970ef95c55b2b1c9169ec)
@@ -29,15 +29,14 @@
namespace Ringtoets.HeightStructures.Forms.PresentationObjects
{
///
- /// Presentation object for all data required to configure an instance of
- /// in order to prepare it for performing a calculation.
+ /// Presentation object for all data required to configure a height structures calculation.
///
public class HeightStructuresCalculationContext : StructuresCalculationContext
{
///
/// Creates a new instance of .
///
- /// The instance wrapped by this context object.
+ /// The calculation instance wrapped by this context object.
/// The that owns the wrapped calculation.
/// The failure mechanism which the context belongs to.
/// The assessment section which the calculation belongs to.
Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/PresentationObjects/StabilityPointStructuresCalculationContext.cs
===================================================================
diff -u -r94a8faf16d9871c71e343cf4bb5e68531459fb20 -r5e1c552bd6b82241abc970ef95c55b2b1c9169ec
--- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/PresentationObjects/StabilityPointStructuresCalculationContext.cs (.../StabilityPointStructuresCalculationContext.cs) (revision 94a8faf16d9871c71e343cf4bb5e68531459fb20)
+++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/PresentationObjects/StabilityPointStructuresCalculationContext.cs (.../StabilityPointStructuresCalculationContext.cs) (revision 5e1c552bd6b82241abc970ef95c55b2b1c9169ec)
@@ -29,15 +29,14 @@
namespace Ringtoets.StabilityPointStructures.Forms.PresentationObjects
{
///
- /// Presentation object for all data required to configure an instance of
- /// in order to prepare it for performing a calculation.
+ /// Presentation object for all data required to configure a stability point structures calculation.
///
public class StabilityPointStructuresCalculationContext : StructuresCalculationContext
{
///
/// Creates a new instance of .
///
- /// The instance wrapped by this context object.
+ /// The calculation instance wrapped by this context object.
/// The that owns the wrapped calculation.
/// The failure mechanism which the context belongs to.
/// The assessment section which the calculation belongs to.