Index: Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/DistributionPropertiesReadOnly.cs
===================================================================
diff -u -r9ee17a39e4ba653cfc2e1a576f0ac53dcdf8a7dc -r9050ad5f3a80e630b2fcc092942a40d6343286a0
--- Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/DistributionPropertiesReadOnly.cs (.../DistributionPropertiesReadOnly.cs) (revision 9ee17a39e4ba653cfc2e1a576f0ac53dcdf8a7dc)
+++ Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/DistributionPropertiesReadOnly.cs (.../DistributionPropertiesReadOnly.cs) (revision 9050ad5f3a80e630b2fcc092942a40d6343286a0)
@@ -19,39 +19,36 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
-using Ringtoets.Common.Data.Probabilistics;
+using System;
namespace Ringtoets.Common.Forms.PropertyClasses
{
///
- /// All options to mark properties of as read-only.
+ /// All options to mark properties of as read-only.
///
+ [Flags]
public enum DistributionPropertiesReadOnly
{
///
- /// Mark both and read-only.
+ /// Mark read-only.
///
- All,
+ Mean = 1,
///
- /// Mark read-only.
+ /// Mark read-only.
///
- Mean,
+ StandardDeviation = 2,
///
- /// Mark read-only.
+ /// Mark both and
+ /// as read-only.
///
- StandardDeviation,
+ All = Mean | StandardDeviation,
///
- /// Mark variation coefficient read-only.
+ /// Mark none of the properties of
+ /// as read-only.
///
- VariationCoefficient,
-
- ///
- /// Mark , ,
- /// and editable.
- ///
- None
+ None = 0
}
}
\ No newline at end of file