Index: Ringtoets/Common/src/Ringtoets.Common.Data/DikeProfiles/IHasForeshoreProfile.cs =================================================================== diff -u -r0e1d04a42ec35249482d25d398ed9dce132e0155 -r89bea52ae1b4639721b93bdd4a537f36ec6d6b9c --- Ringtoets/Common/src/Ringtoets.Common.Data/DikeProfiles/IHasForeshoreProfile.cs (.../IHasForeshoreProfile.cs) (revision 0e1d04a42ec35249482d25d398ed9dce132e0155) +++ Ringtoets/Common/src/Ringtoets.Common.Data/DikeProfiles/IHasForeshoreProfile.cs (.../IHasForeshoreProfile.cs) (revision 89bea52ae1b4639721b93bdd4a537f36ec6d6b9c) @@ -34,17 +34,18 @@ /// /// Gets the value true if the parameters of the instance of /// that are derived from - /// , matches the properties of + /// match the properties of /// ; or false if this /// is not the case, or if there is no - /// is assigned. + /// assigned. /// bool IsForeshoreProfileParametersSynchronized { get; } /// /// Applies the properties of the to /// the parameters of the instance of . /// + /// When no foreshore profile is present, the input parameters are set to default values. void SynchronizeForeshoreProfileParameters(); } } \ No newline at end of file Index: Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresInputBase.cs =================================================================== diff -u -ra95d1154c11d36bd230bcb7599872963f331ee15 -r89bea52ae1b4639721b93bdd4a537f36ec6d6b9c --- Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresInputBase.cs (.../StructuresInputBase.cs) (revision a95d1154c11d36bd230bcb7599872963f331ee15) +++ Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresInputBase.cs (.../StructuresInputBase.cs) (revision 89bea52ae1b4639721b93bdd4a537f36ec6d6b9c) @@ -107,9 +107,12 @@ #endregion /// - /// Gets whether the structure input parameters are synchronized with the set . + /// Gets the value true if the parameters of the instance of + /// that are derived from + /// match the properties of ; + /// or false if this is not the case, or if there is no + /// assigned. /// - /// Always returns false in case no structure is present. public abstract bool IsStructureInputSynchronized { get; } /// @@ -134,7 +137,8 @@ } /// - /// Synchronizes the input parameters with the parameters of the structure. + /// Applies the properties of the to the + /// parameters of the instance of . /// /// When no structure is present, the input parameters are set to default values. public abstract void SynchronizeStructureInput(); Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresFailureMechanismSectionResultTest.cs =================================================================== diff -u -r22f2f5e1f5cf9047b2ab2e5097b56a37fbc4cc5b -r89bea52ae1b4639721b93bdd4a537f36ec6d6b9c --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresFailureMechanismSectionResultTest.cs (.../StructuresFailureMechanismSectionResultTest.cs) (revision 22f2f5e1f5cf9047b2ab2e5097b56a37fbc4cc5b) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresFailureMechanismSectionResultTest.cs (.../StructuresFailureMechanismSectionResultTest.cs) (revision 89bea52ae1b4639721b93bdd4a537f36ec6d6b9c) @@ -76,15 +76,15 @@ private class TestStructuresInput : StructuresInputBase { - public override bool StructureParametersSynchronized + public override bool IsStructureInputSynchronized { get { return false; } } - public override void SynchronizeStructureParameters() {} + public override void SynchronizeStructureInput() {} } } } \ No newline at end of file Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresInputBaseTest.cs =================================================================== diff -u -rfaa45d14b96d0433ec561a39635ad6285b1ad5e3 -r89bea52ae1b4639721b93bdd4a537f36ec6d6b9c --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresInputBaseTest.cs (.../StructuresInputBaseTest.cs) (revision faa45d14b96d0433ec561a39635ad6285b1ad5e3) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresInputBaseTest.cs (.../StructuresInputBaseTest.cs) (revision 89bea52ae1b4639721b93bdd4a537f36ec6d6b9c) @@ -276,15 +276,15 @@ { public bool Synchronized { get; private set; } - public override bool StructureParametersSynchronized + public override bool IsStructureInputSynchronized { get { return Synchronized; } } - public override void SynchronizeStructureParameters() + public override void SynchronizeStructureInput() { Synchronized = true; } Index: Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Factories/RingtoetsMapDataFeaturesFactoryTest.cs =================================================================== diff -u -r22f2f5e1f5cf9047b2ab2e5097b56a37fbc4cc5b -r89bea52ae1b4639721b93bdd4a537f36ec6d6b9c --- Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Factories/RingtoetsMapDataFeaturesFactoryTest.cs (.../RingtoetsMapDataFeaturesFactoryTest.cs) (revision 22f2f5e1f5cf9047b2ab2e5097b56a37fbc4cc5b) +++ Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Factories/RingtoetsMapDataFeaturesFactoryTest.cs (.../RingtoetsMapDataFeaturesFactoryTest.cs) (revision 89bea52ae1b4639721b93bdd4a537f36ec6d6b9c) @@ -846,15 +846,15 @@ private class SimpleStructuresInput : StructuresInputBase { - public override bool StructureParametersSynchronized + public override bool IsStructureInputSynchronized { get { return false; } } - public override void SynchronizeStructureParameters() {} + public override void SynchronizeStructureInput() {} } private class SimpleStructuresCalculation : StructuresCalculation {} Index: Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PropertyClasses/StructuresInputBasePropertiesTest.cs =================================================================== diff -u -r22f2f5e1f5cf9047b2ab2e5097b56a37fbc4cc5b -r89bea52ae1b4639721b93bdd4a537f36ec6d6b9c --- Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PropertyClasses/StructuresInputBasePropertiesTest.cs (.../StructuresInputBasePropertiesTest.cs) (revision 22f2f5e1f5cf9047b2ab2e5097b56a37fbc4cc5b) +++ Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PropertyClasses/StructuresInputBasePropertiesTest.cs (.../StructuresInputBasePropertiesTest.cs) (revision 89bea52ae1b4639721b93bdd4a537f36ec6d6b9c) @@ -1131,15 +1131,15 @@ private class SimpleStructureInput : StructuresInputBase { - public override bool StructureParametersSynchronized + public override bool IsStructureInputSynchronized { get { return false; } } - public override void SynchronizeStructureParameters() {} + public override void SynchronizeStructureInput() {} } private class SimpleStructuresInputProperties : StructuresInputBaseProperties< Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/Configurations/Helpers/WaveReductionConversionExtensionsTest.cs =================================================================== diff -u -r22f2f5e1f5cf9047b2ab2e5097b56a37fbc4cc5b -r89bea52ae1b4639721b93bdd4a537f36ec6d6b9c --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/Configurations/Helpers/WaveReductionConversionExtensionsTest.cs (.../WaveReductionConversionExtensionsTest.cs) (revision 22f2f5e1f5cf9047b2ab2e5097b56a37fbc4cc5b) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/Configurations/Helpers/WaveReductionConversionExtensionsTest.cs (.../WaveReductionConversionExtensionsTest.cs) (revision 89bea52ae1b4639721b93bdd4a537f36ec6d6b9c) @@ -143,15 +143,15 @@ private class SimpleStructuresInput : StructuresInputBase { - public override bool StructureParametersSynchronized + public override bool IsStructureInputSynchronized { get { return false; } } - public override void SynchronizeStructureParameters() {} + public override void SynchronizeStructureInput() {} } private class SimpleStructuresCalculationConfiguration : StructuresCalculationConfiguration Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/Configurations/StructuresCalculationStochastAssignerTest.cs =================================================================== diff -u -r22f2f5e1f5cf9047b2ab2e5097b56a37fbc4cc5b -r89bea52ae1b4639721b93bdd4a537f36ec6d6b9c --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/Configurations/StructuresCalculationStochastAssignerTest.cs (.../StructuresCalculationStochastAssignerTest.cs) (revision 22f2f5e1f5cf9047b2ab2e5097b56a37fbc4cc5b) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/Configurations/StructuresCalculationStochastAssignerTest.cs (.../StructuresCalculationStochastAssignerTest.cs) (revision 89bea52ae1b4639721b93bdd4a537f36ec6d6b9c) @@ -667,15 +667,15 @@ private class SimpleStructuresInput : StructuresInputBase { - public override bool StructureParametersSynchronized + public override bool IsStructureInputSynchronized { get { return false; } } - public override void SynchronizeStructureParameters() {} + public override void SynchronizeStructureInput() {} } #endregion Index: Ringtoets/Common/test/Ringtoets.Common.Service.Test/RingtoetsCommonDataSynchronizationServiceTest.cs =================================================================== diff -u -r22f2f5e1f5cf9047b2ab2e5097b56a37fbc4cc5b -r89bea52ae1b4639721b93bdd4a537f36ec6d6b9c --- Ringtoets/Common/test/Ringtoets.Common.Service.Test/RingtoetsCommonDataSynchronizationServiceTest.cs (.../RingtoetsCommonDataSynchronizationServiceTest.cs) (revision 22f2f5e1f5cf9047b2ab2e5097b56a37fbc4cc5b) +++ Ringtoets/Common/test/Ringtoets.Common.Service.Test/RingtoetsCommonDataSynchronizationServiceTest.cs (.../RingtoetsCommonDataSynchronizationServiceTest.cs) (revision 89bea52ae1b4639721b93bdd4a537f36ec6d6b9c) @@ -525,15 +525,15 @@ private class TestStructureInput : StructuresInputBase { - public override bool StructureParametersSynchronized + public override bool IsStructureInputSynchronized { get { return false; } } - public override void SynchronizeStructureParameters() {} + public override void SynchronizeStructureInput() {} } private class TestStructure : StructureBase Index: Ringtoets/Common/test/Ringtoets.Common.Utils.Test/StructuresHelperTest.cs =================================================================== diff -u -r22f2f5e1f5cf9047b2ab2e5097b56a37fbc4cc5b -r89bea52ae1b4639721b93bdd4a537f36ec6d6b9c --- Ringtoets/Common/test/Ringtoets.Common.Utils.Test/StructuresHelperTest.cs (.../StructuresHelperTest.cs) (revision 22f2f5e1f5cf9047b2ab2e5097b56a37fbc4cc5b) +++ Ringtoets/Common/test/Ringtoets.Common.Utils.Test/StructuresHelperTest.cs (.../StructuresHelperTest.cs) (revision 89bea52ae1b4639721b93bdd4a537f36ec6d6b9c) @@ -224,15 +224,15 @@ private class TestStructuresInput : StructuresInputBase { - public override bool StructureParametersSynchronized + public override bool IsStructureInputSynchronized { get { return false; } } - public override void SynchronizeStructureParameters() {} + public override void SynchronizeStructureInput() {} } private class TestStructuresFailureMechanismSectionResult : StructuresFailureMechanismSectionResult