Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/ClosingStructureFailureMechanismSectionResult.cs =================================================================== diff -u -r8c0ec57a86cd0d73759f178bee1ed647f62692dc -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/ClosingStructureFailureMechanismSectionResult.cs (.../ClosingStructureFailureMechanismSectionResult.cs) (revision 8c0ec57a86cd0d73759f178bee1ed647f62692dc) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/ClosingStructureFailureMechanismSectionResult.cs (.../ClosingStructureFailureMechanismSectionResult.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -26,13 +26,24 @@ namespace Ringtoets.Integration.Data.StandAlone.SectionResult { + /// + /// This class holds information about the result of a calculation on section level for the + /// Closing Structure failure mechanism. + /// public class ClosingStructureFailureMechanismSectionResult : FailureMechanismSectionResult { private RoundedDouble assessmentLayerTwoA; + + /// + /// Creates a new instance of . + /// + /// The for which the + /// will hold the result. + /// Thrown when is null. public ClosingStructureFailureMechanismSectionResult(FailureMechanismSection section) : base(section) { - AssessmentLayerTwoA = (RoundedDouble)1.0; + AssessmentLayerTwoA = (RoundedDouble) 1.0; } /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/DuneErosionFailureMechanismSectionResult.cs =================================================================== diff -u -rd95c2ebbb1133aca06ee1acf68276fa1325247fb -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/DuneErosionFailureMechanismSectionResult.cs (.../DuneErosionFailureMechanismSectionResult.cs) (revision d95c2ebbb1133aca06ee1acf68276fa1325247fb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/DuneErosionFailureMechanismSectionResult.cs (.../DuneErosionFailureMechanismSectionResult.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -24,8 +24,18 @@ namespace Ringtoets.Integration.Data.StandAlone.SectionResult { + /// + /// This class holds information about the result of a calculation on section level for the + /// Dune Erosion failure mechanism. + /// public class DuneErosionFailureMechanismSectionResult : FailureMechanismSectionResult { + /// + /// Creates a new instance of . + /// + /// The for which the + /// will hold the result. + /// Thrown when is null. public DuneErosionFailureMechanismSectionResult(FailureMechanismSection section) : base(section) {} /// @@ -38,4 +48,4 @@ /// public RoundedDouble AssessmentLayerThree { get; set; } } -} +} \ No newline at end of file Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/GrassCoverErosionOutwardsFailureMechanismSectionResult.cs =================================================================== diff -u -r08a279166007321b0ae0f2f15a2f13c191952e1b -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/GrassCoverErosionOutwardsFailureMechanismSectionResult.cs (.../GrassCoverErosionOutwardsFailureMechanismSectionResult.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/GrassCoverErosionOutwardsFailureMechanismSectionResult.cs (.../GrassCoverErosionOutwardsFailureMechanismSectionResult.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -24,8 +24,18 @@ namespace Ringtoets.Integration.Data.StandAlone.SectionResult { + /// + /// This class holds information about the result of a calculation on section level for the + /// Grass Cover Erosion Outwards failure mechanism. + /// public class GrassCoverErosionOutwardsFailureMechanismSectionResult : FailureMechanismSectionResult { + /// + /// Creates a new instance of . + /// + /// The for which the + /// will hold the result. + /// Thrown when is null. public GrassCoverErosionOutwardsFailureMechanismSectionResult(FailureMechanismSection section) : base(section) {} /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/GrassCoverSlipOffInwardsFailureMechanismSectionResult.cs =================================================================== diff -u -r08a279166007321b0ae0f2f15a2f13c191952e1b -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/GrassCoverSlipOffInwardsFailureMechanismSectionResult.cs (.../GrassCoverSlipOffInwardsFailureMechanismSectionResult.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/GrassCoverSlipOffInwardsFailureMechanismSectionResult.cs (.../GrassCoverSlipOffInwardsFailureMechanismSectionResult.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -24,8 +24,18 @@ namespace Ringtoets.Integration.Data.StandAlone.SectionResult { + /// + /// This class holds information about the result of a calculation on section level for the + /// Grass Cover Slip Off Inwards failure mechanism. + /// public class GrassCoverSlipOffInwardsFailureMechanismSectionResult : FailureMechanismSectionResult { + /// + /// Creates a new instance of . + /// + /// The for which the + /// will hold the result. + /// Thrown when is null. public GrassCoverSlipOffInwardsFailureMechanismSectionResult(FailureMechanismSection section) : base(section) {} /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/GrassCoverSlipOffOutwardsFailureMechanismSectionResult.cs =================================================================== diff -u -r08a279166007321b0ae0f2f15a2f13c191952e1b -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/GrassCoverSlipOffOutwardsFailureMechanismSectionResult.cs (.../GrassCoverSlipOffOutwardsFailureMechanismSectionResult.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/GrassCoverSlipOffOutwardsFailureMechanismSectionResult.cs (.../GrassCoverSlipOffOutwardsFailureMechanismSectionResult.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,13 +19,24 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; namespace Ringtoets.Integration.Data.StandAlone.SectionResult { + /// + /// This class holds information about the result of a calculation on section level for the + /// Grass Cover Slip Off Outwards failure mechanism. + /// public class GrassCoverSlipOffOutwardsFailureMechanismSectionResult : FailureMechanismSectionResult { + /// + /// Creates a new instance of . + /// + /// The for which the + /// will hold the result. + /// Thrown when is null. public GrassCoverSlipOffOutwardsFailureMechanismSectionResult(FailureMechanismSection section) : base(section) {} /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/MacrostabilityInwardsFailureMechanismSectionResult.cs =================================================================== diff -u -r8c0ec57a86cd0d73759f178bee1ed647f62692dc -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/MacrostabilityInwardsFailureMechanismSectionResult.cs (.../MacrostabilityInwardsFailureMechanismSectionResult.cs) (revision 8c0ec57a86cd0d73759f178bee1ed647f62692dc) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/MacrostabilityInwardsFailureMechanismSectionResult.cs (.../MacrostabilityInwardsFailureMechanismSectionResult.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -26,9 +26,20 @@ namespace Ringtoets.Integration.Data.StandAlone.SectionResult { + /// + /// This class holds information about the result of a calculation on section level for the + /// Macrostability Inwards failure mechanism. + /// public class MacrostabilityInwardsFailureMechanismSectionResult : FailureMechanismSectionResult { private RoundedDouble assessmentLayerTwoA; + + /// + /// Creates a new instance of . + /// + /// The for which the + /// will hold the result. + /// Thrown when is null. public MacrostabilityInwardsFailureMechanismSectionResult(FailureMechanismSection section) : base(section) { Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/MacrostabilityOutwardsFailureMechanismSectionResult.cs =================================================================== diff -u -r8c0ec57a86cd0d73759f178bee1ed647f62692dc -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/MacrostabilityOutwardsFailureMechanismSectionResult.cs (.../MacrostabilityOutwardsFailureMechanismSectionResult.cs) (revision 8c0ec57a86cd0d73759f178bee1ed647f62692dc) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/MacrostabilityOutwardsFailureMechanismSectionResult.cs (.../MacrostabilityOutwardsFailureMechanismSectionResult.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -26,10 +26,20 @@ namespace Ringtoets.Integration.Data.StandAlone.SectionResult { + /// + /// This class holds information about the result of a calculation on section level for the + /// Macrostability Outwards failure mechanism. + /// public class MacrostabilityOutwardsFailureMechanismSectionResult : FailureMechanismSectionResult { private RoundedDouble assessmentLayerTwoA; + /// + /// Creates a new instance of . + /// + /// The for which the + /// will hold the result. + /// Thrown when is null. public MacrostabilityOutwardsFailureMechanismSectionResult(FailureMechanismSection section) : base(section) { Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/MicrostabilityFailureMechanismSectionResult.cs =================================================================== diff -u -r08a279166007321b0ae0f2f15a2f13c191952e1b -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/MicrostabilityFailureMechanismSectionResult.cs (.../MicrostabilityFailureMechanismSectionResult.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/MicrostabilityFailureMechanismSectionResult.cs (.../MicrostabilityFailureMechanismSectionResult.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,13 +19,24 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; namespace Ringtoets.Integration.Data.StandAlone.SectionResult { + /// + /// This class holds information about the result of a calculation on section level for the + /// Microstability failure mechanism. + /// public class MicrostabilityFailureMechanismSectionResult : FailureMechanismSectionResult { + /// + /// Creates a new instance of . + /// + /// The for which the + /// will hold the result. + /// Thrown when is null. public MicrostabilityFailureMechanismSectionResult(FailureMechanismSection section) : base(section) {} /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/PipingStructureFailureMechanismSectionResult.cs =================================================================== diff -u -r08a279166007321b0ae0f2f15a2f13c191952e1b -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/PipingStructureFailureMechanismSectionResult.cs (.../PipingStructureFailureMechanismSectionResult.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/PipingStructureFailureMechanismSectionResult.cs (.../PipingStructureFailureMechanismSectionResult.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,13 +19,24 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; namespace Ringtoets.Integration.Data.StandAlone.SectionResult { + /// + /// This class holds information about the result of a calculation on section level for the + /// Piping Structure failure mechanism. + /// public class PipingStructureFailureMechanismSectionResult : FailureMechanismSectionResult { + /// + /// Creates a new instance of . + /// + /// The for which the + /// will hold the result. + /// Thrown when is null. public PipingStructureFailureMechanismSectionResult(FailureMechanismSection section) : base(section) {} /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/StabilityStoneCoverFailureMechanismSectionResult.cs =================================================================== diff -u -rd95c2ebbb1133aca06ee1acf68276fa1325247fb -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/StabilityStoneCoverFailureMechanismSectionResult.cs (.../StabilityStoneCoverFailureMechanismSectionResult.cs) (revision d95c2ebbb1133aca06ee1acf68276fa1325247fb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/StabilityStoneCoverFailureMechanismSectionResult.cs (.../StabilityStoneCoverFailureMechanismSectionResult.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,13 +19,24 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; namespace Ringtoets.Integration.Data.StandAlone.SectionResult { + /// + /// This class holds information about the result of a calculation on section level for the + /// Stability of Stone Cover failure mechanism. + /// public class StabilityStoneCoverFailureMechanismSectionResult : FailureMechanismSectionResult { + /// + /// Creates a new instance of . + /// + /// The for which the + /// will hold the result. + /// Thrown when is null. public StabilityStoneCoverFailureMechanismSectionResult(FailureMechanismSection section) : base(section) {} /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/StrengthStabilityLengthwiseConstructionFailureMechanismSectionResult.cs =================================================================== diff -u -r94ca10cc638e4d7ceb513a0eb548e6953f2c97df -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/StrengthStabilityLengthwiseConstructionFailureMechanismSectionResult.cs (.../StrengthStabilityLengthwiseConstructionFailureMechanismSectionResult.cs) (revision 94ca10cc638e4d7ceb513a0eb548e6953f2c97df) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/StrengthStabilityLengthwiseConstructionFailureMechanismSectionResult.cs (.../StrengthStabilityLengthwiseConstructionFailureMechanismSectionResult.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,13 +19,24 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; namespace Ringtoets.Integration.Data.StandAlone.SectionResult { + /// + /// This class holds information about the result of a calculation on section level for the + /// Strength and Stability of Lengthwise Constructions failure mechanism. + /// public class StrengthStabilityLengthwiseConstructionFailureMechanismSectionResult : FailureMechanismSectionResult { + /// + /// Creates a new instance of . + /// + /// The for which the + /// will hold the result. + /// Thrown when is null. public StrengthStabilityLengthwiseConstructionFailureMechanismSectionResult(FailureMechanismSection section) : base(section) {} /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/StrengthStabilityPointConstructionFailureMechanismSectionResult.cs =================================================================== diff -u -rd95c2ebbb1133aca06ee1acf68276fa1325247fb -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/StrengthStabilityPointConstructionFailureMechanismSectionResult.cs (.../StrengthStabilityPointConstructionFailureMechanismSectionResult.cs) (revision d95c2ebbb1133aca06ee1acf68276fa1325247fb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/StrengthStabilityPointConstructionFailureMechanismSectionResult.cs (.../StrengthStabilityPointConstructionFailureMechanismSectionResult.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -26,9 +26,20 @@ namespace Ringtoets.Integration.Data.StandAlone.SectionResult { + /// + /// This class holds information about the result of a calculation on section level for the + /// Strength and Stability of Point Constructions failure mechanism. + /// public class StrengthStabilityPointConstructionFailureMechanismSectionResult : FailureMechanismSectionResult { private RoundedDouble assessmentLayerTwoA; + + /// + /// Creates a new instance of . + /// + /// The for which the + /// will hold the result. + /// Thrown when is null. public StrengthStabilityPointConstructionFailureMechanismSectionResult(FailureMechanismSection section) : base(section) { Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/TechnicalInnovationFailureMechanismSectionResult.cs =================================================================== diff -u -r94ca10cc638e4d7ceb513a0eb548e6953f2c97df -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/TechnicalInnovationFailureMechanismSectionResult.cs (.../TechnicalInnovationFailureMechanismSectionResult.cs) (revision 94ca10cc638e4d7ceb513a0eb548e6953f2c97df) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/TechnicalInnovationFailureMechanismSectionResult.cs (.../TechnicalInnovationFailureMechanismSectionResult.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,13 +19,24 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; namespace Ringtoets.Integration.Data.StandAlone.SectionResult { + /// + /// This class holds information about the result of a calculation on section level for the + /// Technical Innovations failure mechanism. + /// public class TechnicalInnovationFailureMechanismSectionResult : FailureMechanismSectionResult { + /// + /// Creates a new instance of . + /// + /// The for which the + /// will hold the result. + /// Thrown when is null. public TechnicalInnovationFailureMechanismSectionResult(FailureMechanismSection section) : base(section) {} /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/WaterPressureAsphaltCoverFailureMechanismSectionResult.cs =================================================================== diff -u -r94ca10cc638e4d7ceb513a0eb548e6953f2c97df -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/WaterPressureAsphaltCoverFailureMechanismSectionResult.cs (.../WaterPressureAsphaltCoverFailureMechanismSectionResult.cs) (revision 94ca10cc638e4d7ceb513a0eb548e6953f2c97df) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/WaterPressureAsphaltCoverFailureMechanismSectionResult.cs (.../WaterPressureAsphaltCoverFailureMechanismSectionResult.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,13 +19,24 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; namespace Ringtoets.Integration.Data.StandAlone.SectionResult { + /// + /// This class holds information about the result of a calculation on section level for the + /// Water Pressure on Asphalt failure mechanism. + /// public class WaterPressureAsphaltCoverFailureMechanismSectionResult : FailureMechanismSectionResult { + /// + /// Creates a new instance of . + /// + /// The for which the + /// will hold the result. + /// Thrown when is null. public WaterPressureAsphaltCoverFailureMechanismSectionResult(FailureMechanismSection section) : base(section) {} /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/WaveImpactAsphaltCoverFailureMechanismSectionResult.cs =================================================================== diff -u -r3684562eb91b4bf579391fd508d4ef82ba4397b2 -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/WaveImpactAsphaltCoverFailureMechanismSectionResult.cs (.../WaveImpactAsphaltCoverFailureMechanismSectionResult.cs) (revision 3684562eb91b4bf579391fd508d4ef82ba4397b2) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/WaveImpactAsphaltCoverFailureMechanismSectionResult.cs (.../WaveImpactAsphaltCoverFailureMechanismSectionResult.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,13 +19,24 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; namespace Ringtoets.Integration.Data.StandAlone.SectionResult { + /// + /// This class holds information about the result of a calculation on section level for the + /// Wave Impact on Asphalt failure mechanism. + /// public class WaveImpactAsphaltCoverFailureMechanismSectionResult : FailureMechanismSectionResult { + /// + /// Creates a new instance of . + /// + /// The for which the + /// will hold the result. + /// Thrown when is null. public WaveImpactAsphaltCoverFailureMechanismSectionResult(FailureMechanismSection section) : base(section) {} /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/ClosingStructureSectionResultRow.cs =================================================================== diff -u -r3684562eb91b4bf579391fd508d4ef82ba4397b2 -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/ClosingStructureSectionResultRow.cs (.../ClosingStructureSectionResultRow.cs) (revision 3684562eb91b4bf579391fd508d4ef82ba4397b2) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/ClosingStructureSectionResultRow.cs (.../ClosingStructureSectionResultRow.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -26,8 +26,17 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultRow { + /// + /// Class for displaying as a row in a grid. + /// public class ClosingStructureSectionResultRow : FailureMechanismSectionResultRow { + /// + /// Creates a new instance of . + /// + /// The to wrap + /// so that it can be displayed as a row. + /// Thrown when is null. public ClosingStructureSectionResultRow(ClosingStructureFailureMechanismSectionResult sectionResult) : base(sectionResult) {} /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/DuneErosionSectionResultRow.cs =================================================================== diff -u -rd95c2ebbb1133aca06ee1acf68276fa1325247fb -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/DuneErosionSectionResultRow.cs (.../DuneErosionSectionResultRow.cs) (revision d95c2ebbb1133aca06ee1acf68276fa1325247fb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/DuneErosionSectionResultRow.cs (.../DuneErosionSectionResultRow.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,14 +19,24 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Integration.Data.StandAlone.SectionResult; namespace Ringtoets.Integration.Forms.Views.SectionResultRow { + /// + /// Class for displaying as a row in a grid. + /// public class DuneErosionSectionResultRow : FailureMechanismSectionResultRow { + /// + /// Creates a new instance of . + /// + /// The to wrap + /// so that it can be displayed as a row. + /// Thrown when is null. public DuneErosionSectionResultRow(DuneErosionFailureMechanismSectionResult sectionResult) : base(sectionResult) { } /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/FailureMechanismSectionResultRow.cs =================================================================== diff -u -r3684562eb91b4bf579391fd508d4ef82ba4397b2 -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/FailureMechanismSectionResultRow.cs (.../FailureMechanismSectionResultRow.cs) (revision 3684562eb91b4bf579391fd508d4ef82ba4397b2) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/FailureMechanismSectionResultRow.cs (.../FailureMechanismSectionResultRow.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -25,7 +25,7 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultRow { /// - /// Container of a , which takes care of the + /// Base class for a wrapper of a , which takes care of the /// representation of properties in a grid. /// public abstract class FailureMechanismSectionResultRow where T : FailureMechanismSectionResult @@ -46,6 +46,9 @@ SectionResult = sectionResult; } + /// + /// Gets the that is the source of this row. + /// protected T SectionResult { get; private set; } } } \ No newline at end of file Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/GrassCoverErosionOutwardsSectionResultRow.cs =================================================================== diff -u -r08a279166007321b0ae0f2f15a2f13c191952e1b -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/GrassCoverErosionOutwardsSectionResultRow.cs (.../GrassCoverErosionOutwardsSectionResultRow.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/GrassCoverErosionOutwardsSectionResultRow.cs (.../GrassCoverErosionOutwardsSectionResultRow.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,14 +19,24 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Integration.Data.StandAlone.SectionResult; namespace Ringtoets.Integration.Forms.Views.SectionResultRow { + /// + /// Class for displaying as a row in a grid. + /// public class GrassCoverErosionOutwardsSectionResultRow : FailureMechanismSectionResultRow { + /// + /// Creates a new instance of . + /// + /// The to wrap + /// so that it can be displayed as a row. + /// Thrown when is null. public GrassCoverErosionOutwardsSectionResultRow(GrassCoverErosionOutwardsFailureMechanismSectionResult sectionResult) : base(sectionResult) { } /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/GrassCoverSlipOffInwardsSectionResultRow.cs =================================================================== diff -u -r08a279166007321b0ae0f2f15a2f13c191952e1b -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/GrassCoverSlipOffInwardsSectionResultRow.cs (.../GrassCoverSlipOffInwardsSectionResultRow.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/GrassCoverSlipOffInwardsSectionResultRow.cs (.../GrassCoverSlipOffInwardsSectionResultRow.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,14 +19,24 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Integration.Data.StandAlone.SectionResult; namespace Ringtoets.Integration.Forms.Views.SectionResultRow { + /// + /// Class for displaying as a row in a grid. + /// public class GrassCoverSlipOffInwardsSectionResultRow : FailureMechanismSectionResultRow { + /// + /// Creates a new instance of . + /// + /// The to wrap + /// so that it can be displayed as a row. + /// Thrown when is null. public GrassCoverSlipOffInwardsSectionResultRow(GrassCoverSlipOffInwardsFailureMechanismSectionResult sectionResult) : base(sectionResult) { } /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/GrassCoverSlipOffOutwardsSectionResultRow.cs =================================================================== diff -u -r08a279166007321b0ae0f2f15a2f13c191952e1b -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/GrassCoverSlipOffOutwardsSectionResultRow.cs (.../GrassCoverSlipOffOutwardsSectionResultRow.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/GrassCoverSlipOffOutwardsSectionResultRow.cs (.../GrassCoverSlipOffOutwardsSectionResultRow.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,14 +19,24 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Integration.Data.StandAlone.SectionResult; namespace Ringtoets.Integration.Forms.Views.SectionResultRow { + /// + /// Class for displaying as a row in a grid. + /// public class GrassCoverSlipOffOutwardsSectionResultRow : FailureMechanismSectionResultRow { + /// + /// Creates a new instance of . + /// + /// The to wrap + /// so that it can be displayed as a row. + /// Thrown when is null. public GrassCoverSlipOffOutwardsSectionResultRow(GrassCoverSlipOffOutwardsFailureMechanismSectionResult sectionResult) : base(sectionResult) { } /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/MacrostabilityInwardsSectionResultRow.cs =================================================================== diff -u -r3684562eb91b4bf579391fd508d4ef82ba4397b2 -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/MacrostabilityInwardsSectionResultRow.cs (.../MacrostabilityInwardsSectionResultRow.cs) (revision 3684562eb91b4bf579391fd508d4ef82ba4397b2) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/MacrostabilityInwardsSectionResultRow.cs (.../MacrostabilityInwardsSectionResultRow.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -26,8 +26,17 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultRow { + /// + /// Class for displaying as a row in a grid. + /// public class MacrostabilityInwardsSectionResultRow : FailureMechanismSectionResultRow { + /// + /// Creates a new instance of . + /// + /// The to wrap + /// so that it can be displayed as a row. + /// Thrown when is null. public MacrostabilityInwardsSectionResultRow(MacrostabilityInwardsFailureMechanismSectionResult sectionResult) : base(sectionResult) { } /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/MacrostabilityOutwardsSectionResultRow.cs =================================================================== diff -u -r3684562eb91b4bf579391fd508d4ef82ba4397b2 -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/MacrostabilityOutwardsSectionResultRow.cs (.../MacrostabilityOutwardsSectionResultRow.cs) (revision 3684562eb91b4bf579391fd508d4ef82ba4397b2) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/MacrostabilityOutwardsSectionResultRow.cs (.../MacrostabilityOutwardsSectionResultRow.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -26,8 +26,17 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultRow { + /// + /// Class for displaying as a row in a grid. + /// public class MacrostabilityOutwardsSectionResultRow : FailureMechanismSectionResultRow { + /// + /// Creates a new instance of . + /// + /// The to wrap + /// so that it can be displayed as a row. + /// Thrown when is null. public MacrostabilityOutwardsSectionResultRow(MacrostabilityOutwardsFailureMechanismSectionResult sectionResult) : base(sectionResult) { } /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/MicrostabilitySectionResultRow.cs =================================================================== diff -u -r08a279166007321b0ae0f2f15a2f13c191952e1b -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/MicrostabilitySectionResultRow.cs (.../MicrostabilitySectionResultRow.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/MicrostabilitySectionResultRow.cs (.../MicrostabilitySectionResultRow.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,14 +19,24 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Integration.Data.StandAlone.SectionResult; namespace Ringtoets.Integration.Forms.Views.SectionResultRow { + /// + /// Class for displaying as a row in a grid. + /// public class MicrostabilitySectionResultRow : FailureMechanismSectionResultRow { + /// + /// Creates a new instance of . + /// + /// The to wrap + /// so that it can be displayed as a row. + /// Thrown when is null. public MicrostabilitySectionResultRow(MicrostabilityFailureMechanismSectionResult sectionResult) : base(sectionResult) { } /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/PipingStructureSectionResultRow.cs =================================================================== diff -u -r08a279166007321b0ae0f2f15a2f13c191952e1b -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/PipingStructureSectionResultRow.cs (.../PipingStructureSectionResultRow.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/PipingStructureSectionResultRow.cs (.../PipingStructureSectionResultRow.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,14 +19,24 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Integration.Data.StandAlone.SectionResult; namespace Ringtoets.Integration.Forms.Views.SectionResultRow { + /// + /// Class for displaying as a row in a grid. + /// public class PipingStructureSectionResultRow : FailureMechanismSectionResultRow { + /// + /// Creates a new instance of . + /// + /// The to wrap + /// so that it can be displayed as a row. + /// Thrown when is null. public PipingStructureSectionResultRow(PipingStructureFailureMechanismSectionResult sectionResult) : base(sectionResult) { } /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/StabilityStoneCoverSectionResultRow.cs =================================================================== diff -u -rd95c2ebbb1133aca06ee1acf68276fa1325247fb -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/StabilityStoneCoverSectionResultRow.cs (.../StabilityStoneCoverSectionResultRow.cs) (revision d95c2ebbb1133aca06ee1acf68276fa1325247fb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/StabilityStoneCoverSectionResultRow.cs (.../StabilityStoneCoverSectionResultRow.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,14 +19,24 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Integration.Data.StandAlone.SectionResult; namespace Ringtoets.Integration.Forms.Views.SectionResultRow { + /// + /// Class for displaying as a row in a grid. + /// public class StabilityStoneCoverSectionResultRow : FailureMechanismSectionResultRow { + /// + /// Creates a new instance of . + /// + /// The to wrap + /// so that it can be displayed as a row. + /// Thrown when is null. public StabilityStoneCoverSectionResultRow(StabilityStoneCoverFailureMechanismSectionResult sectionResult) : base(sectionResult) { } /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/StrengthStabilityLengthwiseConstructionSectionResultRow.cs =================================================================== diff -u -r94ca10cc638e4d7ceb513a0eb548e6953f2c97df -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/StrengthStabilityLengthwiseConstructionSectionResultRow.cs (.../StrengthStabilityLengthwiseConstructionSectionResultRow.cs) (revision 94ca10cc638e4d7ceb513a0eb548e6953f2c97df) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/StrengthStabilityLengthwiseConstructionSectionResultRow.cs (.../StrengthStabilityLengthwiseConstructionSectionResultRow.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,13 +19,23 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Integration.Data.StandAlone.SectionResult; namespace Ringtoets.Integration.Forms.Views.SectionResultRow { + /// + /// Class for displaying as a row in a grid. + /// public class StrengthStabilityLengthwiseConstructionSectionResultRow : FailureMechanismSectionResultRow { + /// + /// Creates a new instance of . + /// + /// The to wrap + /// so that it can be displayed as a row. + /// Thrown when is null. public StrengthStabilityLengthwiseConstructionSectionResultRow(StrengthStabilityLengthwiseConstructionFailureMechanismSectionResult sectionResult) : base(sectionResult) {} /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/StrengthStabilityPointConstructionSectionResultRow.cs =================================================================== diff -u -rd95c2ebbb1133aca06ee1acf68276fa1325247fb -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/StrengthStabilityPointConstructionSectionResultRow.cs (.../StrengthStabilityPointConstructionSectionResultRow.cs) (revision d95c2ebbb1133aca06ee1acf68276fa1325247fb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/StrengthStabilityPointConstructionSectionResultRow.cs (.../StrengthStabilityPointConstructionSectionResultRow.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -26,8 +26,17 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultRow { + /// + /// Class for displaying as a row in a grid. + /// public class StrengthStabilityPointConstructionSectionResultRow : FailureMechanismSectionResultRow { + /// + /// Creates a new instance of . + /// + /// The to wrap + /// so that it can be displayed as a row. + /// Thrown when is null. public StrengthStabilityPointConstructionSectionResultRow(StrengthStabilityPointConstructionFailureMechanismSectionResult sectionResult) : base(sectionResult) { } /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/TechnicalInnovationSectionResultRow.cs =================================================================== diff -u -r94ca10cc638e4d7ceb513a0eb548e6953f2c97df -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/TechnicalInnovationSectionResultRow.cs (.../TechnicalInnovationSectionResultRow.cs) (revision 94ca10cc638e4d7ceb513a0eb548e6953f2c97df) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/TechnicalInnovationSectionResultRow.cs (.../TechnicalInnovationSectionResultRow.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,14 +19,23 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; -using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Integration.Data.StandAlone.SectionResult; namespace Ringtoets.Integration.Forms.Views.SectionResultRow { + /// + /// Class for displaying as a row in a grid. + /// public class TechnicalInnovationSectionResultRow : FailureMechanismSectionResultRow { + /// + /// Creates a new instance of . + /// + /// The to wrap + /// so that it can be displayed as a row. + /// Thrown when is null. public TechnicalInnovationSectionResultRow(TechnicalInnovationFailureMechanismSectionResult sectionResult) : base(sectionResult) { } /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/WaterPressureAsphaltCoverSectionResultRow.cs =================================================================== diff -u -r94ca10cc638e4d7ceb513a0eb548e6953f2c97df -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/WaterPressureAsphaltCoverSectionResultRow.cs (.../WaterPressureAsphaltCoverSectionResultRow.cs) (revision 94ca10cc638e4d7ceb513a0eb548e6953f2c97df) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/WaterPressureAsphaltCoverSectionResultRow.cs (.../WaterPressureAsphaltCoverSectionResultRow.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,13 +19,23 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Integration.Data.StandAlone.SectionResult; namespace Ringtoets.Integration.Forms.Views.SectionResultRow { + /// + /// Class for displaying as a row in a grid. + /// public class WaterPressureAsphaltCoverSectionResultRow : FailureMechanismSectionResultRow { + /// + /// Creates a new instance of . + /// + /// The to wrap + /// so that it can be displayed as a row. + /// Thrown when is null. public WaterPressureAsphaltCoverSectionResultRow(WaterPressureAsphaltCoverFailureMechanismSectionResult sectionResult) : base(sectionResult) { } /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/WaveImpactAsphaltCoverSectionResultRow.cs =================================================================== diff -u -r3684562eb91b4bf579391fd508d4ef82ba4397b2 -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/WaveImpactAsphaltCoverSectionResultRow.cs (.../WaveImpactAsphaltCoverSectionResultRow.cs) (revision 3684562eb91b4bf579391fd508d4ef82ba4397b2) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRow/WaveImpactAsphaltCoverSectionResultRow.cs (.../WaveImpactAsphaltCoverSectionResultRow.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,13 +19,23 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base.Data; using Ringtoets.Integration.Data.StandAlone.SectionResult; namespace Ringtoets.Integration.Forms.Views.SectionResultRow { + /// + /// Class for displaying as a row in a grid. + /// public class WaveImpactAsphaltCoverSectionResultRow : FailureMechanismSectionResultRow { + /// + /// Creates a new instance of . + /// + /// The to wrap + /// so that it can be displayed as a row. + /// Thrown when is null. public WaveImpactAsphaltCoverSectionResultRow(WaveImpactAsphaltCoverFailureMechanismSectionResult sectionResult) : base(sectionResult) { } /// Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/ClosingStructureResultView.cs =================================================================== diff -u -r3684562eb91b4bf579391fd508d4ef82ba4397b2 -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/ClosingStructureResultView.cs (.../ClosingStructureResultView.cs) (revision 3684562eb91b4bf579391fd508d4ef82ba4397b2) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/ClosingStructureResultView.cs (.../ClosingStructureResultView.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -28,8 +28,14 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultView { + /// + /// The view for a collection of . + /// public class ClosingStructureResultView : FailureMechanismResultView { + /// + /// Creates a new instance of . + /// public ClosingStructureResultView() { DataGridViewControl.AddCellFormattingHandler(OnCellFormatting); Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/DuneErosionResultView.cs =================================================================== diff -u -rd95c2ebbb1133aca06ee1acf68276fa1325247fb -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/DuneErosionResultView.cs (.../DuneErosionResultView.cs) (revision d95c2ebbb1133aca06ee1acf68276fa1325247fb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/DuneErosionResultView.cs (.../DuneErosionResultView.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -22,7 +22,6 @@ using System; using System.Linq; using System.Linq.Expressions; -using System.Windows.Forms; using Core.Common.Utils; using Core.Common.Utils.Reflection; using Ringtoets.Common.Data.FailureMechanism; @@ -33,8 +32,14 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultView { + /// + /// The view for a collection of . + /// public class DuneErosionResultView : FailureMechanismResultView { + /// + /// Creates a new instance of . + /// public DuneErosionResultView() { AddDataGridColumns(); Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/GrassCoverErosionOutwardsResultView.cs =================================================================== diff -u -r08a279166007321b0ae0f2f15a2f13c191952e1b -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/GrassCoverErosionOutwardsResultView.cs (.../GrassCoverErosionOutwardsResultView.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/GrassCoverErosionOutwardsResultView.cs (.../GrassCoverErosionOutwardsResultView.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -33,8 +33,14 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultView { + /// + /// The view for a collection of . + /// public class GrassCoverErosionOutwardsResultView : FailureMechanismResultView { + /// + /// Creates a new instance of . + /// public GrassCoverErosionOutwardsResultView() { DataGridViewControl.AddCellFormattingHandler(OnCellFormatting); Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/GrassCoverSlipOffInwardsResultView.cs =================================================================== diff -u -r08a279166007321b0ae0f2f15a2f13c191952e1b -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/GrassCoverSlipOffInwardsResultView.cs (.../GrassCoverSlipOffInwardsResultView.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/GrassCoverSlipOffInwardsResultView.cs (.../GrassCoverSlipOffInwardsResultView.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -33,8 +33,14 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultView { + /// + /// The view for a collection of . + /// public class GrassCoverSlipOffInwardsResultView : FailureMechanismResultView { + /// + /// Creates a new instance of . + /// public GrassCoverSlipOffInwardsResultView() { DataGridViewControl.AddCellFormattingHandler(OnCellFormatting); Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/GrassCoverSlipOffOutwardsResultView.cs =================================================================== diff -u -r08a279166007321b0ae0f2f15a2f13c191952e1b -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/GrassCoverSlipOffOutwardsResultView.cs (.../GrassCoverSlipOffOutwardsResultView.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/GrassCoverSlipOffOutwardsResultView.cs (.../GrassCoverSlipOffOutwardsResultView.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -33,8 +33,14 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultView { + /// + /// The view for a collection of . + /// public class GrassCoverSlipOffOutwardsResultView : FailureMechanismResultView { + /// + /// Creates a new instance of . + /// public GrassCoverSlipOffOutwardsResultView() { DataGridViewControl.AddCellFormattingHandler(OnCellFormatting); Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/MacrostabilityInwardsResultView.cs =================================================================== diff -u -r3684562eb91b4bf579391fd508d4ef82ba4397b2 -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/MacrostabilityInwardsResultView.cs (.../MacrostabilityInwardsResultView.cs) (revision 3684562eb91b4bf579391fd508d4ef82ba4397b2) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/MacrostabilityInwardsResultView.cs (.../MacrostabilityInwardsResultView.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -28,8 +28,14 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultView { + /// + /// The view for a collection of . + /// public class MacrostabilityInwardsResultView : FailureMechanismResultView { + /// + /// Creates a new instance of . + /// public MacrostabilityInwardsResultView() { DataGridViewControl.AddCellFormattingHandler(OnCellFormatting); Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/MacrostabilityOutwardsResultView.cs =================================================================== diff -u -r3684562eb91b4bf579391fd508d4ef82ba4397b2 -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/MacrostabilityOutwardsResultView.cs (.../MacrostabilityOutwardsResultView.cs) (revision 3684562eb91b4bf579391fd508d4ef82ba4397b2) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/MacrostabilityOutwardsResultView.cs (.../MacrostabilityOutwardsResultView.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -28,8 +28,14 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultView { + /// + /// The view for a collection of . + /// public class MacrostabilityOutwardsResultView : FailureMechanismResultView { + /// + /// Creates a new instance of . + /// public MacrostabilityOutwardsResultView() { DataGridViewControl.AddCellFormattingHandler(OnCellFormatting); Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/MicrostabilityResultView.cs =================================================================== diff -u -r08a279166007321b0ae0f2f15a2f13c191952e1b -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/MicrostabilityResultView.cs (.../MicrostabilityResultView.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/MicrostabilityResultView.cs (.../MicrostabilityResultView.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -33,8 +33,14 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultView { + /// + /// The view for a collection of . + /// public class MicrostabilityResultView : FailureMechanismResultView { + /// + /// Creates a new instance of . + /// public MicrostabilityResultView() { DataGridViewControl.AddCellFormattingHandler(OnCellFormatting); Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/PipingStructureResultView.cs =================================================================== diff -u -r08a279166007321b0ae0f2f15a2f13c191952e1b -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/PipingStructureResultView.cs (.../PipingStructureResultView.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/PipingStructureResultView.cs (.../PipingStructureResultView.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -33,8 +33,14 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultView { + /// + /// The view for a collection of . + /// public class PipingStructureResultView : FailureMechanismResultView { + /// + /// Creates a new instance of . + /// public PipingStructureResultView() { DataGridViewControl.AddCellFormattingHandler(OnCellFormatting); Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/StabilityStoneCoverResultView.cs =================================================================== diff -u -rd95c2ebbb1133aca06ee1acf68276fa1325247fb -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/StabilityStoneCoverResultView.cs (.../StabilityStoneCoverResultView.cs) (revision d95c2ebbb1133aca06ee1acf68276fa1325247fb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/StabilityStoneCoverResultView.cs (.../StabilityStoneCoverResultView.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -22,7 +22,6 @@ using System; using System.Linq; using System.Linq.Expressions; -using System.Windows.Forms; using Core.Common.Utils; using Core.Common.Utils.Reflection; using Ringtoets.Common.Data.FailureMechanism; @@ -33,8 +32,14 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultView { + /// + /// The view for a collection of . + /// public class StabilityStoneCoverResultView : FailureMechanismResultView { + /// + /// Creates a new instance of . + /// public StabilityStoneCoverResultView() { AddDataGridColumns(); Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/StrengthStabilityLengthwiseConstructionResultView.cs =================================================================== diff -u -r94ca10cc638e4d7ceb513a0eb548e6953f2c97df -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/StrengthStabilityLengthwiseConstructionResultView.cs (.../StrengthStabilityLengthwiseConstructionResultView.cs) (revision 94ca10cc638e4d7ceb513a0eb548e6953f2c97df) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/StrengthStabilityLengthwiseConstructionResultView.cs (.../StrengthStabilityLengthwiseConstructionResultView.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -28,8 +28,14 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultView { + /// + /// The view for a collection of . + /// public class StrengthStabilityLengthwiseConstructionResultView : FailureMechanismResultView { + /// + /// Creates a new instance of . + /// public StrengthStabilityLengthwiseConstructionResultView() { DataGridViewControl.AddCellFormattingHandler(OnCellFormatting); Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/StrengthStabilityPointConstructionResultView.cs =================================================================== diff -u -rd95c2ebbb1133aca06ee1acf68276fa1325247fb -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/StrengthStabilityPointConstructionResultView.cs (.../StrengthStabilityPointConstructionResultView.cs) (revision d95c2ebbb1133aca06ee1acf68276fa1325247fb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/StrengthStabilityPointConstructionResultView.cs (.../StrengthStabilityPointConstructionResultView.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -19,7 +19,6 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. -using System.Windows.Forms; using Core.Common.Utils.Reflection; using Ringtoets.Common.Forms.Properties; using Ringtoets.Common.Forms.Views; @@ -28,8 +27,14 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultView { + /// + /// The view for a collection of . + /// public class StrengthStabilityPointConstructionResultView : FailureMechanismResultView { + /// + /// Creates a new instance of . + /// public StrengthStabilityPointConstructionResultView() { AddDataGridColumns(); Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/TechnicalInnovationResultView.cs =================================================================== diff -u -r94ca10cc638e4d7ceb513a0eb548e6953f2c97df -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/TechnicalInnovationResultView.cs (.../TechnicalInnovationResultView.cs) (revision 94ca10cc638e4d7ceb513a0eb548e6953f2c97df) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/TechnicalInnovationResultView.cs (.../TechnicalInnovationResultView.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -21,7 +21,6 @@ using System; using System.Linq; -using System.Linq.Expressions; using System.Windows.Forms; using Core.Common.Utils; using Core.Common.Utils.Reflection; @@ -33,8 +32,14 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultView { + /// + /// The view for a collection of . + /// public class TechnicalInnovationResultView : FailureMechanismResultView { + /// + /// Creates a new instance of . + /// public TechnicalInnovationResultView() { DataGridViewControl.AddCellFormattingHandler(OnCellFormatting); Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/WaterPressureAsphaltCoverResultView.cs =================================================================== diff -u -r94ca10cc638e4d7ceb513a0eb548e6953f2c97df -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/WaterPressureAsphaltCoverResultView.cs (.../WaterPressureAsphaltCoverResultView.cs) (revision 94ca10cc638e4d7ceb513a0eb548e6953f2c97df) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/WaterPressureAsphaltCoverResultView.cs (.../WaterPressureAsphaltCoverResultView.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -28,8 +28,14 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultView { + /// + /// The view for a collection of . + /// public class WaterPressureAsphaltCoverResultView : FailureMechanismResultView { + /// + /// Creates a new instance of . + /// public WaterPressureAsphaltCoverResultView() { DataGridViewControl.AddCellFormattingHandler(OnCellFormatting); Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/WaveImpactAsphaltCoverResultView.cs =================================================================== diff -u -r3684562eb91b4bf579391fd508d4ef82ba4397b2 -r3fce1e32409633996da720052d8ff34f96643855 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/WaveImpactAsphaltCoverResultView.cs (.../WaveImpactAsphaltCoverResultView.cs) (revision 3684562eb91b4bf579391fd508d4ef82ba4397b2) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultView/WaveImpactAsphaltCoverResultView.cs (.../WaveImpactAsphaltCoverResultView.cs) (revision 3fce1e32409633996da720052d8ff34f96643855) @@ -28,8 +28,14 @@ namespace Ringtoets.Integration.Forms.Views.SectionResultView { + /// + /// The view for a collection of . + /// public class WaveImpactAsphaltCoverResultView : FailureMechanismResultView { + /// + /// Creates a new instance of . + /// public WaveImpactAsphaltCoverResultView() { DataGridViewControl.AddCellFormattingHandler(OnCellFormatting);