Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/HydraulicBoundaryDatabaseProperties.cs =================================================================== diff -u -r2ad324afda61327592af1226a9d8d3de01b614be -r0e57a86ea559f535e0128420d8c7076e06cd4f90 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/HydraulicBoundaryDatabaseProperties.cs (.../HydraulicBoundaryDatabaseProperties.cs) (revision 2ad324afda61327592af1226a9d8d3de01b614be) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/HydraulicBoundaryDatabaseProperties.cs (.../HydraulicBoundaryDatabaseProperties.cs) (revision 0e57a86ea559f535e0128420d8c7076e06cd4f90) @@ -35,9 +35,6 @@ /// public class HydraulicBoundaryDatabaseProperties : ObjectProperties { - /// - /// Gets the location of the Hydraulic Boundary Database. - /// [ResourcesCategory(typeof(Resources), "Categories_General")] [ResourcesDisplayName(typeof(Resources), "HydraulicBoundaryDatabase_FilePath_DisplayName")] [ResourcesDescription(typeof(Resources), "HydraulicBoundaryDatabase_FilePath_Description")] @@ -49,9 +46,6 @@ } } - /// - /// Gets the locations that were loaded from the Hydraulic Boundary Database. - /// [TypeConverter(typeof(ExpandableArrayConverter))] [ResourcesCategory(typeof(Resources), "Categories_General")] [ResourcesDisplayName(typeof(Resources), "HydraulicBoundaryDatabase_Locations_DisplayName")] Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/PropertyClasses/StochasticSoilModelProperties.cs =================================================================== diff -u -r25d9f184b0a7bf99101d2ec0b1089ba2aeed9080 -r0e57a86ea559f535e0128420d8c7076e06cd4f90 --- Ringtoets/Piping/src/Ringtoets.Piping.Forms/PropertyClasses/StochasticSoilModelProperties.cs (.../StochasticSoilModelProperties.cs) (revision 25d9f184b0a7bf99101d2ec0b1089ba2aeed9080) +++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/PropertyClasses/StochasticSoilModelProperties.cs (.../StochasticSoilModelProperties.cs) (revision 0e57a86ea559f535e0128420d8c7076e06cd4f90) @@ -34,12 +34,8 @@ /// /// ViewModel of for properties panel. /// - [TypeConverter(typeof(ExpandableObjectConverter))] public class StochasticSoilModelProperties : ObjectProperties { - /// - /// Gets the id from the . - /// [PropertyOrder(1)] [ResourcesCategory(typeof(Resources), "Categories_General")] [ResourcesDisplayName(typeof(Resources), "StochasticSoilModel_Id_DisplayName")] @@ -52,9 +48,6 @@ } } - /// - /// Gets the name from the . - /// [PropertyOrder(2)] [ResourcesCategory(typeof(Resources), "Categories_General")] [ResourcesDisplayName(typeof(Resources), "StochasticSoilModel_Name_DisplayName")] @@ -67,9 +60,6 @@ } } - /// - /// Gets the name of the segment from the . - /// [PropertyOrder(3)] [ResourcesCategory(typeof(Resources), "Categories_General")] [ResourcesDisplayName(typeof(Resources), "StochasticSoilModel_SegmentName_DisplayName")] @@ -82,9 +72,6 @@ } } - /// - /// Gets the geometry points from the . - /// [PropertyOrder(4)] [TypeConverter(typeof(ExpandableArrayConverter))] [ResourcesCategory(typeof(Resources), "Categories_General")] @@ -98,9 +85,6 @@ } } - /// - /// Gets the from the . - /// [PropertyOrder(5)] [TypeConverter(typeof(ExpandableArrayConverter))] [ResourcesCategory(typeof(Resources), "Categories_General")] Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/PropertyClasses/StochasticSoilProfileProperties.cs =================================================================== diff -u -r25d9f184b0a7bf99101d2ec0b1089ba2aeed9080 -r0e57a86ea559f535e0128420d8c7076e06cd4f90 --- Ringtoets/Piping/src/Ringtoets.Piping.Forms/PropertyClasses/StochasticSoilProfileProperties.cs (.../StochasticSoilProfileProperties.cs) (revision 25d9f184b0a7bf99101d2ec0b1089ba2aeed9080) +++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/PropertyClasses/StochasticSoilProfileProperties.cs (.../StochasticSoilProfileProperties.cs) (revision 0e57a86ea559f535e0128420d8c7076e06cd4f90) @@ -38,9 +38,6 @@ [TypeConverter(typeof(ExpandableObjectConverter))] public class StochasticSoilProfileProperties : ObjectProperties { - /// - /// Gets the name from the . - /// [PropertyOrder(1)] [ResourcesCategory(typeof(Resources), "Categories_General")] [ResourcesDisplayName(typeof(Resources), "StochasticSoilProfile_Name_DisplayName")] @@ -49,13 +46,10 @@ { get { - return (data.SoilProfile != null) ? data.SoilProfile.Name : String.Empty; + return data.SoilProfile != null ? data.SoilProfile.Name : String.Empty; } } - /// - /// Gets the probability from the . - /// [PropertyOrder(2)] [ResourcesCategory(typeof(Resources), "Categories_General")] [ResourcesDisplayName(typeof(Resources), "StochasticSoilProfile_Probability_DisplayName")] @@ -68,10 +62,6 @@ } } - /// - /// Gets the top levels from the - /// in the . - /// [PropertyOrder(3)] [TypeConverter(typeof(ExpandableArrayConverter))] [ResourcesCategory(typeof(Resources), "Categories_General")] @@ -81,14 +71,10 @@ { get { - return (data.SoilProfile != null) ? data.SoilProfile.Layers.Select(l => l.Top).ToArray() : new double[0]; + return data.SoilProfile != null ? data.SoilProfile.Layers.Select(l => l.Top).ToArray() : new double[0]; } } - /// - /// Gets the bottom from the - /// in the . - /// [PropertyOrder(4)] [ResourcesCategory(typeof(Resources), "Categories_General")] [ResourcesDisplayName(typeof(Resources), "StochasticSoilProfile_Bottom_DisplayName")] @@ -97,13 +83,10 @@ { get { - return (data.SoilProfile != null) ? data.SoilProfile.Bottom : double.NaN; + return data.SoilProfile != null ? data.SoilProfile.Bottom : double.NaN; } } - /// - /// Gets the type from the . - /// [PropertyOrder(5)] [ResourcesCategory(typeof(Resources), "Categories_General")] [ResourcesDisplayName(typeof(Resources), "StochasticSoilProfile_Type_DisplayName")] @@ -112,7 +95,7 @@ { get { - return (data.SoilProfileType == SoilProfileType.SoilProfile1D) ? "1D profiel" : "2D profiel"; + return data.SoilProfileType == SoilProfileType.SoilProfile1D ? "1D profiel" : "2D profiel"; } }