Index: Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/FaultTreeIllustrationPointProperties.cs
===================================================================
diff -u -ra49798da6ac2176d2e8b28ec6fec8a2494d8ee91 -r3e5d6f7c7f61eb17c81d1f80d2e55fda103f766d
--- Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/FaultTreeIllustrationPointProperties.cs (.../FaultTreeIllustrationPointProperties.cs) (revision a49798da6ac2176d2e8b28ec6fec8a2494d8ee91)
+++ Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/FaultTreeIllustrationPointProperties.cs (.../FaultTreeIllustrationPointProperties.cs) (revision 3e5d6f7c7f61eb17c81d1f80d2e55fda103f766d)
@@ -45,9 +45,8 @@
///
/// The fault tree illustration point to use for the properties.
/// The child nodes that belongs to the .
- /// String containing the wind direction for this illustration point.
- /// String containing the name of the closing situation. If empty
- /// the property will not be visible.
+ /// The wind direction of the illustration point.
+ /// The closing situation of the illustration point.
/// Thrown when any input parameter is null.
public FaultTreeIllustrationPointProperties(FaultTreeIllustrationPoint illustrationPoint, IEnumerable childNodes,
string windDirection, string closingSituation)
@@ -62,7 +61,7 @@
this.childNodes = childNodes;
}
- [PropertyOrder(4)]
+ [PropertyOrder(5)]
[ResourcesCategory(typeof(Resources), nameof(Resources.Categories_IllustrationPoints))]
[ResourcesDisplayName(typeof(Resources), nameof(Resources.IllustrationPoint_AlphaValues_DisplayName))]
[ResourcesDescription(typeof(Resources), nameof(Resources.IllustrationPoint_AlphaValues_Description))]
@@ -76,7 +75,7 @@
}
}
- [PropertyOrder(5)]
+ [PropertyOrder(6)]
[ResourcesCategory(typeof(Resources), nameof(Resources.Categories_IllustrationPoints))]
[ResourcesDisplayName(typeof(Resources), nameof(Resources.IllustrationPoint_Durations_DisplayName))]
[ResourcesDescription(typeof(Resources), nameof(Resources.IllustrationPoint_Durations_Description))]
@@ -91,7 +90,7 @@
}
[DynamicVisible]
- [PropertyOrder(6)]
+ [PropertyOrder(7)]
[ResourcesCategory(typeof(Resources), nameof(Resources.Categories_IllustrationPoints))]
[ResourcesDisplayName(typeof(Resources), nameof(Resources.IllustrationPointProperty_IllustrationPoints_DisplayName))]
[ResourcesDescription(typeof(Resources), nameof(Resources.IllustrationPointProperty_IllustrationPoints_Description))]
@@ -121,7 +120,6 @@
continue;
}
- // If type is not supported, throw exception (currently not possible, safeguard for future)
throw new NotSupportedException($"IllustrationPointNode of type {illustrationPointNode.Data.GetType().Name} is not supported. " +
$"Supported types: {nameof(FaultTreeIllustrationPoint)} and {nameof(SubMechanismIllustrationPoint)}");
}