Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/MacroStabilityCommon/MacroStabilityIo/InterfaceConversionHelper.cs =================================================================== diff -u -r6357 -r6363 --- DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/MacroStabilityCommon/MacroStabilityIo/InterfaceConversionHelper.cs (.../InterfaceConversionHelper.cs) (revision 6357) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/MacroStabilityCommon/MacroStabilityIo/InterfaceConversionHelper.cs (.../InterfaceConversionHelper.cs) (revision 6363) @@ -28,11 +28,11 @@ namespace Deltares.DamEngine.Calculators.KernelWrappers.MacroStabilityCommon.MacroStabilityIo; -public class InterfaceConversionHelper +public static class InterfaceConversionHelper { - /// Converts SearchAlgorithm to MStabSearchMethod. + /// Converts SearchAlgorithm to Dam SearchMethod. /// The MacroStability search algorithm. - /// + /// StabilitySearchMethod /// public static StabilitySearchMethod ConvertToDamSearchMethod(SearchAlgorithmType searchAlgorithm) { @@ -53,9 +53,9 @@ return translationTable[searchAlgorithm]; } - /// Converts MStabSearchMethod to SearchAlgorithm. + /// Converts Dam SearchMethod to Macro Stability SearchAlgorithm. /// The Dam search algorithm. - /// + /// SearchAlgorithmType /// public static SearchAlgorithmType ConvertToMacroStabilitySearchMethod(StabilitySearchMethod stabilitySearchMethod) { @@ -72,7 +72,7 @@ } /// Converts to ModelOptions type. - /// the MStabModelType. + /// the Dam StabilityModelType. /// the MacroStability ModelOption /// public static StabilityModelOption ConvertToMacroStabilityModelOption(StabilityModelType stabilityModelType) @@ -113,9 +113,9 @@ return translationTable[stabilityModelOption]; } - /// Converts to GridOrientation. - /// The MStabGridPosition. - /// + /// Converts to MacroStability GridOrientation. + /// The Dam GridPosition. + /// OrientationType public static OrientationType ConvertToMacroStabilityGridOrientation(StabilityGridPosition stabilityGridPosition) { var translationTable = new Dictionary @@ -130,9 +130,9 @@ return translationTable[stabilityGridPosition]; } - /// Converts to MStabGridPosition. + /// Converts to Dam GridPosition. /// The grid orientation. - /// + /// StabilityGridPosition public static StabilityGridPosition ConvertToDamGridPosition(OrientationType gridOrientation) { var translationTable = new Dictionary @@ -149,7 +149,7 @@ /// Converts the type of to macro stability characteristic point. /// Type of the dam characteristic point. - /// + /// CharacteristicPointType (Macro stability) public static CharacteristicPointType ConvertToMacroStabilityCharacteristicPointType(Deltares.DamEngine.Data.Geotechnics.CharacteristicPointType damCharacteristicPointType) { var translationTable = new Dictionary @@ -211,7 +211,7 @@ /// Converts the type of macro stability characteristic point to dam type. /// Type of the dam characteristic point. - /// + /// CharacteristicPointType (DamEngine) public static Deltares.DamEngine.Data.Geotechnics.CharacteristicPointType ConvertToDamCharacteristicPointType(CharacteristicPointType kernelCharacteristicPointType) { var translationTable = new Dictionary @@ -381,7 +381,7 @@ /// Converts to macro stability ShearStrengthModel. /// The dam ShearStrengthModel. - /// + /// ShearStrengthModelType /// private static ShearStrengthModelType ConvertToMacroStabilityShearStrengthModel(ShearStrengthModel damShearStrengthModel) { @@ -405,7 +405,7 @@ /// Converts to dam ShearStrengthModel. /// The kernel ShearStrengthModel. - /// + /// ShearStrengthModel private static ShearStrengthModel ConvertToDamShearStrengthModel(ShearStrengthModelType kernelShearStrengthModel) { var translationTable = new Dictionary @@ -428,7 +428,7 @@ /// Converts to macro stability water pressure interpolation model. /// The water pressure interpolation model. - /// + /// WaterPressureInterpolationModelType public static WaterPressureInterpolationModelType ConvertToMacroStabilityWaterPressureInterpolationModel(WaterpressureInterpolationModel waterPressureInterpolationModel) { var translationTable = new Dictionary @@ -443,9 +443,9 @@ return translationTable[waterPressureInterpolationModel]; } - /// Converts to dam waterpressure interpolation model. - /// The waterpressure interpolation model. - /// + /// Converts to dam water pressure interpolation model. + /// The water pressure interpolation model. + /// WaterpressureInterpolationModel public static WaterpressureInterpolationModel ConvertToDamWaterPressureInterpolationModel(WaterPressureInterpolationModelType waterpressureInterpolationModel) { var translationTable = new Dictionary