Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/Placeholders/StandAloneFailureMechanism.cs
===================================================================
diff -u -r23d7af54feb72aa59fa17acb00d29a16921f1b94 -rf02aacfe462777023a9657e3f8269dedbae3c2b6
--- Ringtoets/Integration/src/Ringtoets.Integration.Data/Placeholders/StandAloneFailureMechanism.cs (.../StandAloneFailureMechanism.cs) (revision 23d7af54feb72aa59fa17acb00d29a16921f1b94)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Data/Placeholders/StandAloneFailureMechanism.cs (.../StandAloneFailureMechanism.cs) (revision f02aacfe462777023a9657e3f8269dedbae3c2b6)
@@ -29,15 +29,15 @@
namespace Ringtoets.Integration.Data.Placeholders
{
///
- /// Defines a placeholder for unimplemented failure mechanisms objects
+ /// Defines a placeholder for stand alone failure mechanisms objects
///
public class StandAloneFailureMechanism : FailureMechanismBase
{
///
/// Initializes a new instance of the class.
///
- /// The name for the placeholder.
- /// The code for the placeholder.
+ /// The name for the .
+ /// The code for the .
/// Thrown when either:
///
/// - is null or empty.
@@ -47,8 +47,6 @@
public StandAloneFailureMechanism(string name, string code)
: base(name, code)
{
- Locations = new InputPlaceholder(RingtoetsCommonDataResources.FailureMechanism_Locations_DisplayName);
- BoundaryConditions = new InputPlaceholder(RingtoetsCommonDataResources.FailureMechanism_BoundaryConditions_DisplayName);
AssessmentResult = new OutputPlaceholder(RingtoetsCommonDataResources.FailureMechanism_AssessmentResult_DisplayName);
}
@@ -61,16 +59,6 @@
}
///
- /// Gets the locations relevant for evaluating this failure mechanism.
- ///
- public InputPlaceholder Locations { get; private set; }
-
- ///
- /// Gets the boundary conditions applying to this failure mechanism.
- ///
- public InputPlaceholder BoundaryConditions { get; private set; }
-
- ///
/// Gets the calculation results for this failure mechanism.
///
public OutputPlaceholder AssessmentResult { get; private set; }