Index: DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/IoCharacteristicPoint.cs
===================================================================
diff -u -r3136 -r3137
--- DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/IoCharacteristicPoint.cs (.../IoCharacteristicPoint.cs) (revision 3136)
+++ DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/IoCharacteristicPoint.cs (.../IoCharacteristicPoint.cs) (revision 3137)
@@ -21,12 +21,19 @@
namespace Deltares.LayerOnSlopeTool.Io
{
+ /// Characteristic Point Type
public class IoCharacteristicPoint
{
+ /// Gets or sets the x coordinate.
+ /// The x.
public double X { get; set; }
+ /// Gets or sets the y coordinate.
+ /// The y.
public double Y { get; set; }
+ /// Gets or sets the type of the characteristic point.
+ /// The type of the characteristic point.
public CharacteristicPointType CharacteristicPointType { get; set; }
}
Index: DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/FillIoDamMStabDocFromXml.cs
===================================================================
diff -u -r3136 -r3137
--- DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/FillIoDamMStabDocFromXml.cs (.../FillIoDamMStabDocFromXml.cs) (revision 3136)
+++ DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/FillIoDamMStabDocFromXml.cs (.../FillIoDamMStabDocFromXml.cs) (revision 3137)
@@ -20,10 +20,10 @@
// All rights reserved.
using System.Collections.Generic;
-using System.Net.Http.Headers;
namespace Deltares.LayerOnSlopeTool.Io
{
+ /// Class for transferring Xml data to Io data
public static class FillIoDamMStabDocFromXml
{
/// Fills the io dam m stab document.
Index: DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/IoModel.cs
===================================================================
diff -u -r3132 -r3137
--- DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/IoModel.cs (.../IoModel.cs) (revision 3132)
+++ DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/IoModel.cs (.../IoModel.cs) (revision 3137)
@@ -21,16 +21,28 @@
namespace Deltares.LayerOnSlopeTool.Io
{
+ /// Model type
public class IoModel
{
+ /// Gets or sets the calculation model.
+ /// The calculation model.
public ModelType CalculationModel { get; set; }
+ /// Gets or sets the shear strength.
+ /// The shear strength.
public ShearStrengthType ShearStrength { get; set; }
+ /// Gets or sets a value indicating whether this is probabilistic.
+ ///
+ /// true if probabilistic; otherwise, false.
public bool Probabilistic { get; set; }
- public SearchMethodType SearchMethod { get; set; }
+ /// Gets or sets the search method.
+ /// The search method.
+ public SearchMethodType SearchMethod { get; set; }
+ /// Gets or sets the grid position.
+ /// The grid position.
public GridPositionType GridPosition { get; set; }
}
}
\ No newline at end of file
Index: DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/IoGeometryCreationOptions.cs
===================================================================
diff -u -r3120 -r3137
--- DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/IoGeometryCreationOptions.cs (.../IoGeometryCreationOptions.cs) (revision 3120)
+++ DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/IoGeometryCreationOptions.cs (.../IoGeometryCreationOptions.cs) (revision 3137)
@@ -21,14 +21,23 @@
namespace Deltares.LayerOnSlopeTool.Io
{
+ /// Geometry Creation Options type
public class IoGeometryCreationOptions
{
+ /// Gets or sets the type of the soil geometry.
+ /// The type of the soil geometry.
public SoilGeometryType SoilGeometryType { get; set; }
+ /// Gets or sets the soil geometry-2D filename.
+ /// The soil geometry2 d filename.
public string SoilGeometry2DFilename { get; set; }
+ /// Gets or sets the x offset soil geometry-2D origin.
+ /// The x offset soil geometry2 d origin.
public double XOffsetSoilGeometry2DOrigin { get; set; }
+ /// Gets or sets the material for dike.
+ /// The material for dike.
public string MaterialForDike { get; set; }
}
}
\ No newline at end of file
Index: DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/FillXmlDamMStabDocFromIo.cs
===================================================================
diff -u -r3136 -r3137
--- DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/FillXmlDamMStabDocFromIo.cs (.../FillXmlDamMStabDocFromIo.cs) (revision 3136)
+++ DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/FillXmlDamMStabDocFromIo.cs (.../FillXmlDamMStabDocFromIo.cs) (revision 3137)
@@ -23,6 +23,7 @@
namespace Deltares.LayerOnSlopeTool.Io
{
+ /// Class for transferring Io data to Xml data
public static class FillXmlDamMStabDocFromIo
{
/// Fills the XML dam m stab document.
Index: DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/IoMStabDamDoc.cs
===================================================================
diff -u -r3117 -r3137
--- DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/IoMStabDamDoc.cs (.../IoMStabDamDoc.cs) (revision 3117)
+++ DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/IoMStabDamDoc.cs (.../IoMStabDamDoc.cs) (revision 3137)
@@ -21,8 +21,11 @@
namespace Deltares.LayerOnSlopeTool.Io
{
+ /// MStabDam document root
public class IoMStabDamDoc
{
+ /// Gets the MStab input parameters.
+ /// The MStab input.
public IoDamMStabInput MStabInput { get; } = new IoDamMStabInput();
}
}
\ No newline at end of file
Index: DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/IoSurfacePoint.cs
===================================================================
diff -u -r3135 -r3137
--- DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/IoSurfacePoint.cs (.../IoSurfacePoint.cs) (revision 3135)
+++ DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Io/IoSurfacePoint.cs (.../IoSurfacePoint.cs) (revision 3137)
@@ -21,10 +21,15 @@
namespace Deltares.LayerOnSlopeTool.Io
{
+ /// Surface Point type
public class IoSurfacePoint
{
+ /// Gets or sets the x coordinate.
+ /// The x.
public double X { get; set; }
+ /// Gets or sets the y coordinate.
+ /// The y.
public double Y { get; set; }
}
}
\ No newline at end of file