Index: Ringtoets/Common/src/Ringtoets.Common.Forms/TreeNodeInfos/RingtoetsContextMenuItemFactory.cs =================================================================== diff -u -rc73100fd8408a2865d6fb32bd17608502686b605 -r4ee6f18dc68531d4c2554b691e55cca699eb514b --- Ringtoets/Common/src/Ringtoets.Common.Forms/TreeNodeInfos/RingtoetsContextMenuItemFactory.cs (.../RingtoetsContextMenuItemFactory.cs) (revision c73100fd8408a2865d6fb32bd17608502686b605) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/TreeNodeInfos/RingtoetsContextMenuItemFactory.cs (.../RingtoetsContextMenuItemFactory.cs) (revision 4ee6f18dc68531d4c2554b691e55cca699eb514b) @@ -96,20 +96,20 @@ /// /// Creates a which is bound to the action of performing all calculations in a calculation group. /// - /// The type of the calculation group context. + /// The type of the calculation group context. /// The calculation group to perform all calculations for. /// The calculation group context belonging to the calculation group. /// The action that performs all calculations. /// The function which determines whether the item should be enabled. If the /// item should not be enabled, then the reason for that should be returned by the function and will be shown as a tooltip. /// If the item should be enabled then the function should return a null or empty string. /// The created . - public static StrictContextMenuItem CreatePerformAllCalculationsInGroupItem( + public static StrictContextMenuItem CreatePerformAllCalculationsInGroupItem( CalculationGroup calculationGroup, - TCalculationContext calculationGroupContext, - Action calculateAllAction, - Func enableMenuItemFunction) - where TCalculationContext : ICalculationContext + TCalculationGroupContext calculationGroupContext, + Action calculateAllAction, + Func enableMenuItemFunction) + where TCalculationGroupContext : ICalculationContext { var menuItem = new StrictContextMenuItem( Resources.Calculate_all, @@ -134,18 +134,18 @@ /// Creates a which is bound to the action of validating the input of each calculation /// in a calculation group. /// - /// The type of the calculation group context. + /// The type of the calculation group context. /// The calculation group context belonging to the calculation group. /// The action that validates all calculations. /// The function which determines whether the item should be enabled. If the - /// item should not be enabled, then the reason for that should be returned by the function and will be shown as a tooltip. - /// If the item should be enabled then the function should return a null or empty string. + /// item should not be enabled, then the reason for that should be returned by the function and will be shown as a tooltip. + /// If the item should be enabled then the function should return a null or empty string. /// The created . - public static StrictContextMenuItem CreateValidateAllCalculationsInGroupItem( - TCalculationContext calculationGroupContext, - Action validateAllAction, - Func enableMenuItemFunction) - where TCalculationContext : ICalculationContext + public static StrictContextMenuItem CreateValidateAllCalculationsInGroupItem( + TCalculationGroupContext calculationGroupContext, + Action validateAllAction, + Func enableMenuItemFunction) + where TCalculationGroupContext : ICalculationContext { CalculationGroup calculationGroup = calculationGroupContext.WrappedData; var menuItem = new StrictContextMenuItem(