Index: Application/Riskeer/src/Application.Riskeer.Migration.Console/RiskeerMigrationTool.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Application/Riskeer/src/Application.Riskeer.Migration.Console/RiskeerMigrationTool.cs (.../RiskeerMigrationTool.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Application/Riskeer/src/Application.Riskeer.Migration.Console/RiskeerMigrationTool.cs (.../RiskeerMigrationTool.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -34,7 +34,8 @@
/// - --help Shows help menu,
/// - --supported Returns if the database file is supported,
/// - --migrate Migrates the database file to a newer version.
- ///
+ ///
+ ///
public static void Main(string[] args)
{
var riskeerMigrationConsole = new RiskeerMigrationConsole();
Index: Core/Common/src/Core.Common.Controls/DataGrid/DataGridViewControl.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Core/Common/src/Core.Common.Controls/DataGrid/DataGridViewControl.cs (.../DataGridViewControl.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Core/Common/src/Core.Common.Controls/DataGrid/DataGridViewControl.cs (.../DataGridViewControl.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -356,7 +356,8 @@
/// will clear the grid view.
/// - To reset the scrollbars to the starting position,
/// the scrollbars need to be set to none before changing the datasource.
- ///
+ ///
+ ///
public void SetDataSource(IEnumerable dataSource)
{
ScrollBars originalScrollBarsValue = dataGridView.ScrollBars;
Index: Core/Common/src/Core.Common.Geometry/AdvancedMath2D.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Core/Common/src/Core.Common.Geometry/AdvancedMath2D.cs (.../AdvancedMath2D.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Core/Common/src/Core.Common.Geometry/AdvancedMath2D.cs (.../AdvancedMath2D.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -42,7 +42,7 @@
/// Points of the first polygon.
/// Points of the second polygon.
/// A collection of point arrays. Each point array describes an intersecting area of the polygons.
- ///
+ /// Thrown in case of invalid polygons.
public static IEnumerable PolygonIntersectionWithPolygon(IEnumerable pointsOfPolygonA, IEnumerable pointsOfPolygonB)
{
Polygon polygonA = PointsToPolygon(pointsOfPolygonA);
Index: Core/Common/src/Core.Common.Util/Drawing/ColorAccess.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Core/Common/src/Core.Common.Util/Drawing/ColorAccess.cs (.../ColorAccess.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Core/Common/src/Core.Common.Util/Drawing/ColorAccess.cs (.../ColorAccess.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -185,7 +185,7 @@
/// The image to gain access to.
/// Optional: The area of
/// to provide access to. When not specified, the whole image is accessible.
- ///
+ /// A instance.
/// Thrown when
/// is null.
/// Thrown when
@@ -253,9 +253,9 @@
}
///
- /// Gets the pixelsize based on the .
+ /// Gets the pixel size based on the .
///
- ///
+ /// The pixel format.
/// The pixel size.
/// Thrown when
/// is an invalid .
Index: Core/Common/src/Core.Common.Util/IOUtils.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Core/Common/src/Core.Common.Util/IOUtils.cs (.../IOUtils.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Core/Common/src/Core.Common.Util/IOUtils.cs (.../IOUtils.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -45,7 +45,8 @@
/// - has no access rights to that location.
/// - isn't too long.
/// - does not contain an invalid ':' character.
- ///
+ ///
+ ///
public static bool IsValidFolderPath(string path)
{
try
@@ -70,7 +71,8 @@
/// - Caller has no access rights to the folder path.
/// - The folder path is too long.
/// - The folder path contains an invalid ':' character.
- ///
+ ///
+ ///
public static void ValidateFolderPath(string path)
{
try
@@ -96,7 +98,8 @@
/// - does not consist out of only whitespace characters,
/// - does not contain an invalid character,
/// - does not end with a directory or path separator (empty file name).
- ///
+ ///
+ ///
///
public static void ValidateFilePath(string path)
{
@@ -136,7 +139,8 @@
/// - does not contain an invalid character,
/// - is not empty or null,
/// - does not end with a directory or path separator (empty file name).
- ///
+ ///
+ ///
public static bool IsValidFilePath(string path)
{
try
@@ -206,7 +210,8 @@
/// - does not consist out of only whitespace characters,
/// - does not contain an invalid character,
/// - does not end with a directory or path separator (empty file name).
- ///
+ ///
+ ///
public static void CreateFileIfNotExists(string path)
{
ValidateFilePath(path);
@@ -239,7 +244,8 @@
/// - The caller has no access rights to the path.
/// - The path is too long.
/// - The path contains a ':' that is not part of a volume identifier.
- ///
+ ///
+ ///
public static string GetFullPath(string path)
{
if (string.IsNullOrWhiteSpace(path))
Index: Core/Components/src/Core.Components.Gis/Data/WmtsMapData.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Core/Components/src/Core.Components.Gis/Data/WmtsMapData.cs (.../WmtsMapData.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Core/Components/src/Core.Components.Gis/Data/WmtsMapData.cs (.../WmtsMapData.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -41,7 +41,8 @@
///
/// - is null or only whitespace.
/// - is not stated as a MIME-type.
- ///
+ ///
+ ///
/// Thrown when ,
/// or is null.
public WmtsMapData(string name, string sourceCapabilitiesUrl, string selectedCapabilityName,
Index: Core/Components/src/Core.Components.Gis/Theme/MapTheme.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Core/Components/src/Core.Components.Gis/Theme/MapTheme.cs (.../MapTheme.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Core/Components/src/Core.Components.Gis/Theme/MapTheme.cs (.../MapTheme.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -42,7 +42,8 @@
///
/// - is null, empty or consists of only whitespace.
/// - is empty.
- ///
+ ///
+ ///
public MapTheme(string attributeName, IEnumerable categoryThemes)
{
if (string.IsNullOrWhiteSpace(attributeName))
Index: Core/Gui/src/Core.Gui/PropertyBag/PropertySpec.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Core/Gui/src/Core.Gui/PropertyBag/PropertySpec.cs (.../PropertySpec.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Core/Gui/src/Core.Gui/PropertyBag/PropertySpec.cs (.../PropertySpec.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -103,7 +103,8 @@
/// - is of incorrect type.
/// - An error occurred while setting the property value. The
/// property indicates the reason for the error.
- ///
+ ///
+ ///
/// Calling this method while property
/// has no setter.
/// Calling the method resulted in an exception.
@@ -135,7 +136,8 @@
/// - Property is an instance property but is null.
/// - An error occurred while setting the property value. The
/// property indicates the reason for the error.
- ///
+ ///
+ ///
/// Thrown when calling this method while
/// property has no getter.
public object GetValue(object instance)
Index: Migration/Scripts/src/Migration.Scripts.Data/CreateScript.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Migration/Scripts/src/Migration.Scripts.Data/CreateScript.cs (.../CreateScript.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Migration/Scripts/src/Migration.Scripts.Data/CreateScript.cs (.../CreateScript.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -59,7 +59,8 @@
/// - consists out of only whitespace characters,
/// - contains an invalid character,
/// - ends with a directory or path separator (empty file name).
- ///
+ ///
+ ///
/// Thrown when creating
/// failed.
/// Creates the file if it does not exist.
Index: Migration/Scripts/src/Migration.Scripts.Data/UpgradeScript.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Migration/Scripts/src/Migration.Scripts.Data/UpgradeScript.cs (.../UpgradeScript.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Migration/Scripts/src/Migration.Scripts.Data/UpgradeScript.cs (.../UpgradeScript.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -42,7 +42,8 @@
///
/// - is empty or null,
/// - is empty or null.
- ///
+ ///
+ ///
protected UpgradeScript(string fromVersion, string toVersion)
{
if (string.IsNullOrEmpty(fromVersion))
Index: Migration/Scripts/test/Migration.Scripts.Data.TestUtil/TestUpgradeScript.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Migration/Scripts/test/Migration.Scripts.Data.TestUtil/TestUpgradeScript.cs (.../TestUpgradeScript.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Migration/Scripts/test/Migration.Scripts.Data.TestUtil/TestUpgradeScript.cs (.../TestUpgradeScript.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -37,7 +37,8 @@
///
/// - is empty or null,
/// - is empty or null,
- ///
+ ///
+ ///
public TestUpgradeScript(string fromVersion, string toVersion)
: base(fromVersion, toVersion) {}
Index: Riskeer/AssemblyTool/test/Riskeer.AssemblyTool.IO.TestUtil/ExportableFailureMechanismSectionAssemblyResultAssertHelper.cs
===================================================================
diff -u -rb1da394011453b27010fc1c5369b3dc686ddfc8f -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/AssemblyTool/test/Riskeer.AssemblyTool.IO.TestUtil/ExportableFailureMechanismSectionAssemblyResultAssertHelper.cs (.../ExportableFailureMechanismSectionAssemblyResultAssertHelper.cs) (revision b1da394011453b27010fc1c5369b3dc686ddfc8f)
+++ Riskeer/AssemblyTool/test/Riskeer.AssemblyTool.IO.TestUtil/ExportableFailureMechanismSectionAssemblyResultAssertHelper.cs (.../ExportableFailureMechanismSectionAssemblyResultAssertHelper.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -46,7 +46,8 @@
/// - The id does not contain the expected value.
/// - The values between and
/// do not match.
- ///
+ ///
+ ///
public static void AssertExportableFailureMechanismSectionResults(FailureMechanismSectionAssemblyResultWrapper expectedAssemblyResultWrapper,
IEnumerable sections,
IEnumerable results)
@@ -75,7 +76,8 @@
/// - The id does not contain the expected value.
/// - The values between and
/// do not match.
- ///
+ ///
+ ///
public static void AssertExportableFailureMechanismSectionResult(FailureMechanismSectionAssemblyResultWrapper expectedAssemblyResultWrapper,
ExportableFailureMechanismSectionAssemblyResult actualExportableAssemblyResult,
ExportableFailureMechanismSection section, int i = 0)
Index: Riskeer/AssemblyTool/test/Riskeer.AssemblyTool.IO.TestUtil/ExportableFailureMechanismSectionAssertHelper.cs
===================================================================
diff -u -rab7a84d6e73888e4f0008d05580481698a6c32c4 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/AssemblyTool/test/Riskeer.AssemblyTool.IO.TestUtil/ExportableFailureMechanismSectionAssertHelper.cs (.../ExportableFailureMechanismSectionAssertHelper.cs) (revision ab7a84d6e73888e4f0008d05580481698a6c32c4)
+++ Riskeer/AssemblyTool/test/Riskeer.AssemblyTool.IO.TestUtil/ExportableFailureMechanismSectionAssertHelper.cs (.../ExportableFailureMechanismSectionAssertHelper.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -45,7 +45,8 @@
/// do not match.
/// - The geometry of the sections are not equal.
/// - The id does not contain the expected value.
- ///
+ ///
+ ///
public static void AssertExportableFailureMechanismSections(IEnumerable expectedSections,
IEnumerable actualSections)
{
Index: Riskeer/Common/src/Riskeer.Common.Data/Contribution/FailureMechanismContribution.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.Data/Contribution/FailureMechanismContribution.cs (.../FailureMechanismContribution.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.Data/Contribution/FailureMechanismContribution.cs (.../FailureMechanismContribution.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -65,7 +65,8 @@
///
/// - The new value is not in the interval [0.000001, 0.1] or is ;
/// - The new value is larger than the .
- ///
+ ///
+ ///
public double SignalFloodingProbability
{
get => signalFloodingProbability;
@@ -84,7 +85,8 @@
///
/// - The new value is not in the interval [0.000001, 0.1] or is ;
/// - The new value is smaller than the .
- ///
+ ///
+ ///
public double MaximumAllowableFloodingProbability
{
get => maximumAllowableFloodingProbability;
Index: Riskeer/Common/src/Riskeer.Common.Data/FailureMechanism/FailureMechanismSection.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.Data/FailureMechanism/FailureMechanismSection.cs (.../FailureMechanismSection.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.Data/FailureMechanism/FailureMechanismSection.cs (.../FailureMechanismSection.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -42,11 +42,14 @@
/// The geometry points of the section.
/// Thrown when:
/// - is null.
- /// - is null.
+ /// - is null.
+ ///
+ ///
/// Thrown when:
/// - does not have at least one geometry point.
/// - One or more elements are null.
- ///
+ ///
+ ///
public FailureMechanismSection(string name, IEnumerable geometryPoints)
{
if (name == null)
Index: Riskeer/Common/src/Riskeer.Common.Data/FailureMechanism/FailureMechanismSectionCollection.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.Data/FailureMechanism/FailureMechanismSectionCollection.cs (.../FailureMechanismSectionCollection.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.Data/FailureMechanism/FailureMechanismSectionCollection.cs (.../FailureMechanismSectionCollection.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -62,7 +62,8 @@
///
/// - is not a valid file path.
/// - contains sections that are not properly chained.
- ///
+ ///
+ ///
public void SetSections(IEnumerable failureMechanismSections,
string sourcePath)
{
Index: Riskeer/Common/src/Riskeer.Common.Data/FailureMechanism/IFailureMechanism.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.Data/FailureMechanism/IFailureMechanism.cs (.../IFailureMechanism.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.Data/FailureMechanism/IFailureMechanism.cs (.../IFailureMechanism.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -86,7 +86,8 @@
///
/// - is not a valid file path.
/// - contains sections that are not properly chained.
- ///
+ ///
+ ///
void SetSections(IEnumerable sections, string sourcePath);
///
Index: Riskeer/Common/src/Riskeer.Common.Data/IllustrationPoints/SubMechanismIllustrationPoint.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.Data/IllustrationPoints/SubMechanismIllustrationPoint.cs (.../SubMechanismIllustrationPoint.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.Data/IllustrationPoints/SubMechanismIllustrationPoint.cs (.../SubMechanismIllustrationPoint.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -44,7 +44,8 @@
/// - ;
/// - ;
/// - .
- ///
+ ///
+ ///
/// Thrown when the aren't unique.
public SubMechanismIllustrationPoint(string name,
double beta,
Index: Riskeer/Common/src/Riskeer.Common.IO/DikeProfiles/DikeProfileDataReader.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.IO/DikeProfiles/DikeProfileDataReader.cs (.../DikeProfileDataReader.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.IO/DikeProfiles/DikeProfileDataReader.cs (.../DikeProfileDataReader.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -99,7 +99,8 @@
/// - The geometry points for either the dike or foreshore do not have monotonically
/// increasing X-coordinates.
/// - An unexpected piece of text has been encountered in the file.
- ///
+ ///
+ ///
/// Thrown when the read id is not an accepted id.
public DikeProfileData ReadDikeProfileData(string filePath)
{
@@ -664,7 +665,8 @@
/// - Any of read the parameters in the following data block is invalid.
/// - The keyword has already been defined.
/// - The X-coordinates of the dike are not monotonically increasing.
- ///
+ ///
+ ///
private bool TryReadDikeRoughnessPoints(string text, DikeProfileData data, TextReader reader, ref int lineNumber)
{
Match dikeGeometryMatch = new Regex(@"^DIJK(\s+(?.+?)?)?\s*$").Match(text);
@@ -877,7 +879,8 @@
/// - Any of read the parameters in the following data block is invalid.
/// - The keyword has already been defined.
/// - The X-coordinates of the foreshore are not monotonically increasing.
- ///
+ ///
+ ///
private bool TryReadForeshoreRoughnessPoints(string text, DikeProfileData data, TextReader reader, ref int lineNumber)
{
Match foreshoreGeometryMatch = new Regex(@"^VOORLAND(\s+(?.+?)?)?\s*$").Match(text);
Index: Riskeer/Common/src/Riskeer.Common.IO/DikeProfiles/ProfileLocation.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.IO/DikeProfiles/ProfileLocation.cs (.../ProfileLocation.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.IO/DikeProfiles/ProfileLocation.cs (.../ProfileLocation.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -42,7 +42,8 @@
/// - The Id parameter is null.
/// - The Id parameter contains illegal characters.
/// - The Point parameter is null.
- ///
+ ///
+ ///
public ProfileLocation(string id, string name, double offset, Point2D point)
{
if (id == null)
Index: Riskeer/Common/src/Riskeer.Common.IO/DikeProfiles/ProfileLocationReader.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.IO/DikeProfiles/ProfileLocationReader.cs (.../ProfileLocationReader.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.IO/DikeProfiles/ProfileLocationReader.cs (.../ProfileLocationReader.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -54,7 +54,8 @@
/// - points to a file that does not exist.
/// - does not only contain point features.
/// - does not contain all of the required attributes.
- ///
+ ///
+ ///
public ProfileLocationReader(string shapeFilePath)
{
IOUtils.ValidateFilePath(shapeFilePath);
@@ -88,7 +89,8 @@
///
/// - The shapefile misses a value for a required attribute.
/// - The shapefile has an attribute whose type is incorrect.
- ///
+ ///
+ ///
/// A based on the next point feature in the shapefile.
public ProfileLocation GetNextProfileLocation()
{
@@ -135,7 +137,8 @@
/// - points to a file that doesn't exist.
/// - The shapefile has non-point geometries in it.
/// - An unexpected error occurred when reading the shapefile.
- ///
+ ///
+ ///
/// Return an instance of .
private static PointShapeFileReader OpenPointsShapeFile(string shapeFilePath)
{
Index: Riskeer/Common/src/Riskeer.Common.IO/FailureMechanismSectionReader.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.IO/FailureMechanismSectionReader.cs (.../FailureMechanismSectionReader.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.IO/FailureMechanismSectionReader.cs (.../FailureMechanismSectionReader.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -85,7 +85,8 @@
///
/// - the shapefile does not have a required attribute defined.
/// - the element read from the file is a multi-polyline.
- ///
+ ///
+ ///
public FailureMechanismSection ReadFailureMechanismSection()
{
ValidateExistenceOfRequiredAttributes();
Index: Riskeer/Common/src/Riskeer.Common.IO/FileImporters/ProfilesImporter.cs
===================================================================
diff -u -rfaf9540f452b6a8cd9fe8976eb3fb42b05a6f7d0 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.IO/FileImporters/ProfilesImporter.cs (.../ProfilesImporter.cs) (revision faf9540f452b6a8cd9fe8976eb3fb42b05a6f7d0)
+++ Riskeer/Common/src/Riskeer.Common.IO/FileImporters/ProfilesImporter.cs (.../ProfilesImporter.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -252,7 +252,8 @@
/// - The shapefile misses a value for a required attribute.
/// - The shapefile has an attribute whose type is incorrect.
/// - The read is outside the reference line.
- ///
+ ///
+ ///
private void AddNextProfileLocation(ProfileLocationReader profileLocationReader, Collection profileLocations)
{
ProfileLocation profileLocation = profileLocationReader.GetNextProfileLocation();
Index: Riskeer/Common/src/Riskeer.Common.IO/FileImporters/StructuresImporter.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.IO/FileImporters/StructuresImporter.cs (.../StructuresImporter.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.IO/FileImporters/StructuresImporter.cs (.../StructuresImporter.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -388,12 +388,14 @@
///
/// - The reads multiple structures for a structure.
/// - A structure read from the is not on the reference line.
- ///
+ ///
+ ///
/// Thrown when either:
///
/// - The shapefile misses a value for a required attribute.
/// - The shapefile has an attribute whose type is incorrect.
- ///
+ ///
+ ///
private void AddNextStructureLocation(StructureLocationReader structureLocationReader, Collection structureLocations)
{
StructureLocation structureLocation = structureLocationReader.GetNextStructureLocation();
Index: Riskeer/Common/src/Riskeer.Common.IO/ReferenceLines/ReferenceLineMetaImporter.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.IO/ReferenceLines/ReferenceLineMetaImporter.cs (.../ReferenceLineMetaImporter.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.IO/ReferenceLines/ReferenceLineMetaImporter.cs (.../ReferenceLineMetaImporter.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -55,7 +55,8 @@
///
/// - points to an invalid directory.
/// - The path does not contain any shape files.
- ///
+ ///
+ ///
public ReferenceLineMetaImporter(string folderpath)
{
ValidateAndConnectTo(folderpath);
@@ -70,7 +71,8 @@
///
/// - The shape file does not contain the required attributes.
/// - The assessment section ids in the shape file are not unique or are missing.
- ///
+ ///
+ ///
public IEnumerable GetReferenceLineMetas()
{
IEnumerable referenceLineMetas = ReferenceLinesMetaReader.ReadReferenceLinesMetas(shapeFilePath);
Index: Riskeer/Common/src/Riskeer.Common.IO/ReferenceLines/ReferenceLineWriter.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.IO/ReferenceLines/ReferenceLineWriter.cs (.../ReferenceLineWriter.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.IO/ReferenceLines/ReferenceLineWriter.cs (.../ReferenceLineWriter.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -49,7 +49,8 @@
/// Thrown when
/// - is invalid, or
/// - is empty or consists of whitespace.
- ///
+ ///
+ ///
/// Thrown when the shapefile cannot be written.
public void WriteReferenceLine(ReferenceLine referenceLine, string id, string filePath)
{
Index: Riskeer/Common/src/Riskeer.Common.IO/ReferenceLines/ReferenceLinesMetaReader.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.IO/ReferenceLines/ReferenceLinesMetaReader.cs (.../ReferenceLinesMetaReader.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.IO/ReferenceLines/ReferenceLinesMetaReader.cs (.../ReferenceLinesMetaReader.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -58,7 +58,8 @@
/// - The shape file does not contain the mandatory attributes.
/// - Has an empty attribute.
/// - The shape file has non-line geometries in it.
- ///
+ ///
+ ///
public static IEnumerable ReadReferenceLinesMetas(string shapeFilePath)
{
ValidateFilePath(shapeFilePath);
Index: Riskeer/Common/src/Riskeer.Common.IO/SoilProfile/SoilLayer2DGeometryReader.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.IO/SoilProfile/SoilLayer2DGeometryReader.cs (.../SoilLayer2DGeometryReader.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.IO/SoilProfile/SoilLayer2DGeometryReader.cs (.../SoilLayer2DGeometryReader.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -215,7 +215,8 @@
///
/// - A coordinate value cannot be parsed.
/// - The XML for the point is invalid.
- ///
+ ///
+ ///
private static Point2D ParsePoint(XElement point)
{
XElement xElement = point.Element(xElementName);
Index: Riskeer/Common/src/Riskeer.Common.IO/Structures/StructureLocationReader.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.IO/Structures/StructureLocationReader.cs (.../StructureLocationReader.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.IO/Structures/StructureLocationReader.cs (.../StructureLocationReader.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -53,7 +53,8 @@
/// - points to a file that does not exist.
/// - does not only contain point features.
/// - does not contain all of the required attributes.
- ///
+ ///
+ ///
public StructureLocationReader(string shapeFilePath)
{
IOUtils.ValidateFilePath(shapeFilePath);
@@ -87,7 +88,8 @@
///
/// - The shapefile misses a value for a required attribute.
/// - The shapefile has an attribute whose type is incorrect.
- ///
+ ///
+ ///
/// A based on the next point feature in the shapefile.
public StructureLocation GetNextStructureLocation()
{
@@ -148,7 +150,8 @@
/// - points to a file that doesn't exist.
/// - The shapefile has non-point geometries in it.
/// - An unexpected error occurred when reading the shapefile.
- ///
+ ///
+ ///
/// Return an instance of .
private static PointShapeFileReader OpenPointsShapeFile(string shapeFilePath)
{
Index: Riskeer/Common/src/Riskeer.Common.IO/Structures/StructuresCharacteristicsCsvReader.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.IO/Structures/StructuresCharacteristicsCsvReader.cs (.../StructuresCharacteristicsCsvReader.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.IO/Structures/StructuresCharacteristicsCsvReader.cs (.../StructuresCharacteristicsCsvReader.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -101,7 +101,8 @@
/// - The file is empty.
/// - Some I/O related problem occurred.
/// - The header is not in the required format.
- ///
+ ///
+ ///
/// Thrown when either:
///
/// - The line does not contain the separator character.
@@ -110,7 +111,8 @@
/// - Numeric value field is not a number or too large/small to be represented as .
/// - Variance value field is not a number or too large/small to be represented as .
/// - Boolean field is not a valid value.
- ///
+ ///
+ ///
public StructuresParameterRow ReadLine()
{
if (fileReader == null)
@@ -345,7 +347,8 @@
/// - Numeric value field is not a number or too large/small to be represented as .
/// - Variance value field is not a number or too large/small to be represented as .
/// - Boolean field is not a valid value.
- ///
+ ///
+ ///
private StructuresParameterRow CreateStructuresParameterRow(string readText)
{
string[] tokenizedText = TokenizeString(readText);
Index: Riskeer/Common/src/Riskeer.Common.IO/SurfaceLines/CharacteristicPointsCsvReader.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/src/Riskeer.Common.IO/SurfaceLines/CharacteristicPointsCsvReader.cs (.../CharacteristicPointsCsvReader.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/src/Riskeer.Common.IO/SurfaceLines/CharacteristicPointsCsvReader.cs (.../CharacteristicPointsCsvReader.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -356,7 +356,8 @@
///
/// - has too many or few columns.
/// - contains a coordinate value which could not be parsed to .
- ///
+ ///
+ ///
private CharacteristicPoints CreateCharacteristicPointsLocation(string readText)
{
string[] tokenizedString = TokenizeString(readText);
Index: Riskeer/Common/test/Riskeer.Common.Data.TestUtil/DistributionAssert.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/test/Riskeer.Common.Data.TestUtil/DistributionAssert.cs (.../DistributionAssert.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/test/Riskeer.Common.Data.TestUtil/DistributionAssert.cs (.../DistributionAssert.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -42,7 +42,8 @@
/// - The probabilistic distribution types.
/// - The values for the mean and/or the standard deviation.
/// - The precision for the mean and/or the standard deviation.
- ///
+ ///
+ ///
public static void AreEqual(IDistribution expectedDistribution, IDistribution actualDistribution)
{
Assert.AreEqual(expectedDistribution.GetType(), actualDistribution.GetType());
@@ -63,7 +64,8 @@
/// - The probabilistic distribution types.
/// - The values for the mean, the standard deviation and/or the shift.
/// - The precision for the mean, the standard deviation and/or the shift.
- ///
+ ///
+ ///
public static void AreEqual(LogNormalDistribution expectedDistribution, LogNormalDistribution actualDistribution)
{
AreEqual((IDistribution) expectedDistribution, actualDistribution);
@@ -83,7 +85,8 @@
/// - The probabilistic distribution types.
/// - The values for the mean, the standard deviation, the lower boundary and/or the upper boundary.
/// - The precision for the mean, the standard deviation, the lower boundary and/or the upper boundary.
- ///
+ ///
+ ///
public static void AreEqual(TruncatedNormalDistribution expectedDistribution, TruncatedNormalDistribution actualDistribution)
{
AreEqual((IDistribution) expectedDistribution, actualDistribution);
@@ -104,7 +107,8 @@
/// - The probabilistic distribution types.
/// - The values for the mean and/or the variation.
/// - The precision for the mean and/or the variation.
- ///
+ ///
+ ///
public static void AreEqual(IVariationCoefficientDistribution expectedDistribution, IVariationCoefficientDistribution actualDistribution)
{
Assert.AreEqual(expectedDistribution.GetType(), actualDistribution.GetType());
@@ -125,7 +129,8 @@
/// - The probabilistic distribution types.
/// - The values for the mean and/or the variation.
/// - The precision for the mean, variation and/or shift.
- ///
+ ///
+ ///
public static void AreEqual(VariationCoefficientLogNormalDistribution expectedDistribution, VariationCoefficientLogNormalDistribution actualDistribution)
{
AreEqual((IVariationCoefficientDistribution) expectedDistribution, actualDistribution);
Index: Riskeer/Common/test/Riskeer.Common.Data.TestUtil/DistributionTestHelper.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/test/Riskeer.Common.Data.TestUtil/DistributionTestHelper.cs (.../DistributionTestHelper.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/test/Riskeer.Common.Data.TestUtil/DistributionTestHelper.cs (.../DistributionTestHelper.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -42,7 +42,8 @@
/// are the same reference.
/// - The values of the do not match with the
/// .
- ///
+ ///
+ ///
public static void AssertDistributionCorrectlySet(IDistribution distributionToAssert,
IDistribution setDistribution,
IDistribution expectedDistribution)
@@ -64,7 +65,8 @@
/// are the same reference.
/// - The values of the do not match with the
/// .
- ///
+ ///
+ ///
public static void AssertDistributionCorrectlySet(IVariationCoefficientDistribution distributionToAssert,
IVariationCoefficientDistribution setDistribution,
IVariationCoefficientDistribution expectedDistribution)
Index: Riskeer/Common/test/Riskeer.Common.Data.TestUtil/TestForeshoreProfile.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/test/Riskeer.Common.Data.TestUtil/TestForeshoreProfile.cs (.../TestForeshoreProfile.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/test/Riskeer.Common.Data.TestUtil/TestForeshoreProfile.cs (.../TestForeshoreProfile.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -100,7 +100,8 @@
///
/// - Any element of is null.
/// - is null, empty or whitespaces.
- ///
+ ///
+ ///
public TestForeshoreProfile(string profileId, IEnumerable geometry)
: this(profileId, "name", new Point2D(0, 0), null, geometry) {}
@@ -118,7 +119,8 @@
///
/// - Any element of is null.
/// - is null, empty or whitespaces.
- ///
+ ///
+ ///
private TestForeshoreProfile(string profileId, string profileName, Point2D worldCoordinate, BreakWater breakWater, IEnumerable geometry)
: base(worldCoordinate,
geometry,
Index: Riskeer/Common/test/Riskeer.Common.Forms.TestUtil/MapThemeTestHelper.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Common/test/Riskeer.Common.Forms.TestUtil/MapThemeTestHelper.cs (.../MapThemeTestHelper.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Common/test/Riskeer.Common.Forms.TestUtil/MapThemeTestHelper.cs (.../MapThemeTestHelper.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -43,7 +43,8 @@
/// - does not have the expected attribute name it categorizes its data on.
/// - does not have the expected number of criteria as themes.
/// - does not have the expected categorical criteria as themes.
- ///
+ ///
+ ///
public static void AssertFailureMechanismSectionAssemblyGroupMapTheme(MapTheme theme)
{
Assert.AreEqual("Duidingsklasse", theme.AttributeName);
Index: Riskeer/GrassCoverErosionInwards/src/Riskeer.GrassCoverErosionInwards.Service/GrassCoverErosionInwardsCalculationService.cs
===================================================================
diff -u -rb976916052d8a44a1034e3a834bff70868bce365 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/GrassCoverErosionInwards/src/Riskeer.GrassCoverErosionInwards.Service/GrassCoverErosionInwardsCalculationService.cs (.../GrassCoverErosionInwardsCalculationService.cs) (revision b976916052d8a44a1034e3a834bff70868bce365)
+++ Riskeer/GrassCoverErosionInwards/src/Riskeer.GrassCoverErosionInwards.Service/GrassCoverErosionInwardsCalculationService.cs (.../GrassCoverErosionInwardsCalculationService.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -117,7 +117,8 @@
///
///
///
- ///
+ ///
+ ///
/// Thrown when the hydraulic boundary database file path contains invalid characters.
/// Thrown when:
///
Index: Riskeer/HydraRing/src/Riskeer.HydraRing.Calculation/Parsers/IHydraRingFileParser.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/HydraRing/src/Riskeer.HydraRing.Calculation/Parsers/IHydraRingFileParser.cs (.../IHydraRingFileParser.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/HydraRing/src/Riskeer.HydraRing.Calculation/Parsers/IHydraRingFileParser.cs (.../IHydraRingFileParser.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -42,7 +42,8 @@
/// - contains illegal characters, or
/// - contains a colon which is not part of a volume identifier, or
/// - is too long.
- ///
+ ///
+ ///
/// Thrown when the HydraRing file parser
/// encounters an error while parsing HydraRing output.
void Parse(string workingDirectory, int sectionId);
Index: Riskeer/Integration/src/Riskeer.Integration.Plugin/Handlers/AssessmentSectionFromFileHandler.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Integration/src/Riskeer.Integration.Plugin/Handlers/AssessmentSectionFromFileHandler.cs (.../AssessmentSectionFromFileHandler.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Integration/src/Riskeer.Integration.Plugin/Handlers/AssessmentSectionFromFileHandler.cs (.../AssessmentSectionFromFileHandler.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -81,7 +81,8 @@
/// - points to an invalid directory.
/// - The path does not contain any shape files.
/// - Thrown when the shape file does not contain poly lines.
- ///
+ ///
+ ///
/// Thrown when:
///
/// - The shape file does not contain the required attributes.
@@ -90,7 +91,8 @@
/// - The maximum allowable flooding probability is not in the interval [0.000001, 0.1] or is ;
/// - The signal flooding probability is not in the interval [0.000001, 0.1] or is ;
/// - The signal flooding probability is larger than the maximum allowable flooding probability.
- ///
+ ///
+ ///
public AssessmentSection GetAssessmentSectionFromFile()
{
TryReadSourceFiles();
@@ -307,13 +309,15 @@
/// - points to an invalid directory.
/// - The path does not contain any shape files.
/// - Thrown when the shape file does not contain poly lines.
- ///
+ ///
+ ///
/// Thrown when:
///
/// - The shape file does not contain the required attributes.
/// - The assessment section ids in the shape file are not unique or are missing.
/// - No could be read from the shape file.
- ///
+ ///
+ ///
private void TryReadSourceFiles()
{
ReadAssessmentSectionSettings();
@@ -337,13 +341,15 @@
/// - points to an invalid directory.
/// - The path does not contain any shape files.
/// - Thrown when the shape file does not contain poly lines.
- ///
+ ///
+ ///
/// Thrown when:
///
/// - The shape file does not contain the required attributes.
/// - The assessment section ids in the shape file are not unique or are missing.
/// - No could be read from the shape file.
- ///
+ ///
+ ///
private void ReadReferenceLineMetas()
{
var importer = new ReferenceLineMetaImporter(shapeFileDirectory);
Index: Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilProfile1D.cs
===================================================================
diff -u -rdc035c32b9a643281048954455b5e0bd0b909ff9 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilProfile1D.cs (.../MacroStabilityInwardsSoilProfile1D.cs) (revision dc035c32b9a643281048954455b5e0bd0b909ff9)
+++ Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilProfile1D.cs (.../MacroStabilityInwardsSoilProfile1D.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -195,7 +195,8 @@
/// - contains no layers
/// - contains a layer with the less than
///
- ///
+ ///
+ ///
private void ValidateLayersCollection(IEnumerable collection)
{
if (collection == null)
Index: Riskeer/Migration/src/Riskeer.Migration.Core/ProjectCreateScript.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Migration/src/Riskeer.Migration.Core/ProjectCreateScript.cs (.../ProjectCreateScript.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Migration/src/Riskeer.Migration.Core/ProjectCreateScript.cs (.../ProjectCreateScript.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -44,7 +44,8 @@
///
/// - is not a valid project version,
/// - is empty, null, or consist out of only whitespace characters.
- ///
+ ///
+ ///
public ProjectCreateScript(string version, string query) : base(version)
{
ProjectVersionHelper.ValidateVersion(version);
Index: Riskeer/Migration/src/Riskeer.Migration.Core/ProjectDatabaseFile.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Migration/src/Riskeer.Migration.Core/ProjectDatabaseFile.cs (.../ProjectDatabaseFile.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Migration/src/Riskeer.Migration.Core/ProjectDatabaseFile.cs (.../ProjectDatabaseFile.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -46,7 +46,8 @@
/// - does not contain an invalid character,
/// - does not end with a directory or path separator (empty file name),
/// - is not writable.
- ///
+ ///
+ ///
/// Creates the file if it does not exist.
public ProjectDatabaseFile(string path)
{
Index: Riskeer/Migration/src/Riskeer.Migration.Core/ProjectUpgradeScript.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Migration/src/Riskeer.Migration.Core/ProjectUpgradeScript.cs (.../ProjectUpgradeScript.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Migration/src/Riskeer.Migration.Core/ProjectUpgradeScript.cs (.../ProjectUpgradeScript.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -48,7 +48,8 @@
/// - is not a valid project version,
/// - is not a valid project version,
/// - is empty, null, or consists out of only whitespace characters.
- ///
+ ///
+ ///
public ProjectUpgradeScript(string fromVersion, string toVersion, string query, string logDatabaseLocation)
: base(fromVersion, toVersion)
{
Index: Riskeer/Migration/test/Riskeer.Migration.Integration.Test/MigrationTo181IntegrationTest.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Migration/test/Riskeer.Migration.Integration.Test/MigrationTo181IntegrationTest.cs (.../MigrationTo181IntegrationTest.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Migration/test/Riskeer.Migration.Integration.Test/MigrationTo181IntegrationTest.cs (.../MigrationTo181IntegrationTest.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -1251,7 +1251,8 @@
///
/// - The namespace is still present.
/// - The class name of the serialized data is still present.
- ///
+ ///
+ ///
public static void AssertSerializedMacroStabilityInwardsOutput(MigratedDatabaseReader reader)
{
const string outputEntity = "MacroStabilityInwardsCalculationOutputEntity";
@@ -1283,7 +1284,8 @@
///
/// - The namespace is still present.
/// - The class name of the serialized data is still present.
- ///
+ ///
+ ///
public static void AssertSerializedDikeProfileRoughnessPoints(MigratedDatabaseReader reader)
{
string validateDikeGeometry =
@@ -1304,7 +1306,8 @@
///
/// - The namespace is still present.
/// - The class name of the serialized data is still present.
- ///
+ ///
+ ///
public static void AssertSerializedSurfaceLine(MigratedDatabaseReader reader)
{
string validateSurfaceLinePoints =
@@ -1325,7 +1328,8 @@
///
/// - The namespace is still present.
/// - The class name of the serialized data is still present.
- ///
+ ///
+ ///
public static void AssertSerializedPoint2DCollection(MigratedDatabaseReader reader)
{
reader.AssertReturnedDataIsValid(GenerateSerializedPoint2DValidationQuery("AssessmentSectionEntity", "ReferenceLinePointXml"));
Index: Riskeer/Piping/src/Riskeer.Piping.KernelWrapper/PipingCalculator.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Piping/src/Riskeer.Piping.KernelWrapper/PipingCalculator.cs (.../PipingCalculator.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Piping/src/Riskeer.Piping.KernelWrapper/PipingCalculator.cs (.../PipingCalculator.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -123,7 +123,8 @@
/// - surface line is null
/// - soil profile is null
/// - soil profile's aquifer layer is not set
- ///
+ ///
+ ///
public double CalculateEffectiveThicknessCoverageLayer()
{
try
Index: Riskeer/Piping/src/Riskeer.Piping.Primitives/PipingSoilProfile.cs
===================================================================
diff -u -rd087f469690dacc87329ee76d1a3c35d2cfe14c5 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Piping/src/Riskeer.Piping.Primitives/PipingSoilProfile.cs (.../PipingSoilProfile.cs) (revision d087f469690dacc87329ee76d1a3c35d2cfe14c5)
+++ Riskeer/Piping/src/Riskeer.Piping.Primitives/PipingSoilProfile.cs (.../PipingSoilProfile.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -172,7 +172,8 @@
/// - contains no layers
/// - contains a layer with the less than
///
- ///
+ ///
+ ///
private void ValidateLayersCollection(IEnumerable collection)
{
if (collection == null)
Index: Riskeer/Storage/src/Riskeer.Storage.Core/StorageSqLite.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Storage/src/Riskeer.Storage.Core/StorageSqLite.cs (.../StorageSqLite.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Storage/src/Riskeer.Storage.Core/StorageSqLite.cs (.../StorageSqLite.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -259,7 +259,8 @@
///
/// - is invalid
/// - points to an existing file
- ///
+ ///
+ ///
/// Thrown when:
/// - executing DatabaseStructure script failed
///
Index: Riskeer/Storage/src/Riskeer.Storage.Core/StorageSqliteCreator.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Storage/src/Riskeer.Storage.Core/StorageSqliteCreator.cs (.../StorageSqliteCreator.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Storage/src/Riskeer.Storage.Core/StorageSqliteCreator.cs (.../StorageSqliteCreator.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -44,7 +44,8 @@
///
/// - is invalid
/// - points to an existing file
- ///
+ ///
+ ///
/// Thrown when executing DatabaseStructure script fails.
public static void CreateDatabaseStructure(string databaseFilePath)
{
Index: Riskeer/Storage/test/Riskeer.Storage.Core.TestUtil/IllustrationPoints/GeneralResultEntityTestHelper.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Storage/test/Riskeer.Storage.Core.TestUtil/IllustrationPoints/GeneralResultEntityTestHelper.cs (.../GeneralResultEntityTestHelper.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Storage/test/Riskeer.Storage.Core.TestUtil/IllustrationPoints/GeneralResultEntityTestHelper.cs (.../GeneralResultEntityTestHelper.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -46,7 +46,8 @@
/// - The values of the governing wind direction name and angles do not match.
/// - The count of the stochasts do not match.
/// - The count of the top level illustration points do not match.
- ///
+ ///
+ ///
/// This only asserts the properties of the
/// that are directly associated with it, but not the values of the items it is composed of.
public static void AssertGeneralResultPropertyValues(GeneralResult generalResult,
@@ -84,7 +85,8 @@
/// - The values of the governing wind direction name and angles do not match.
/// - The count of the stochasts do not match.
/// - The count of the top level illustration points do not match.
- ///
+ ///
+ ///
/// This only asserts the properties of the
/// that are directly associated with it, but not the values of the items it is composed of.
public static void AssertGeneralResultPropertyValues(GeneralResult generalResult,
Index: Riskeer/Storage/test/Riskeer.Storage.Core.TestUtil/Serializers/SerializerTestHelper.cs
===================================================================
diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -r59d8231997e44f83fece6166bb46dce97aeec7b8
--- Riskeer/Storage/test/Riskeer.Storage.Core.TestUtil/Serializers/SerializerTestHelper.cs (.../SerializerTestHelper.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1)
+++ Riskeer/Storage/test/Riskeer.Storage.Core.TestUtil/Serializers/SerializerTestHelper.cs (.../SerializerTestHelper.cs) (revision 59d8231997e44f83fece6166bb46dce97aeec7b8)
@@ -42,7 +42,8 @@
/// - have a .
/// - have the expected attribute name.
/// - have the expected attribute namespace.
- ///
+ ///
+ ///
public static void AssertSerializedData(Type serializedData)
{
// Call