Index: Core/Common/src/Core.Common.Controls/Commands/ICommand.cs =================================================================== diff -u -r4512af7782ee31b36941bb280b54d9da2953dd71 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/src/Core.Common.Controls/Commands/ICommand.cs (.../ICommand.cs) (revision 4512af7782ee31b36941bb280b54d9da2953dd71) +++ Core/Common/src/Core.Common.Controls/Commands/ICommand.cs (.../ICommand.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -27,12 +27,12 @@ public interface ICommand { /// - /// Gets whether or not the is enabled. + /// Gets a value indicating whether or not the is enabled. /// bool Enabled { get; } /// - /// Gets whether or not the is checked. + /// Gets a value indicating whether or not the is checked. /// bool Checked { get; } Index: Core/Common/src/Core.Common.Gui/Commands/ViewCommandHandler.cs =================================================================== diff -u -ref1c61d94f2aec3b4ff32fcf03253d7ad386c8e5 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/src/Core.Common.Gui/Commands/ViewCommandHandler.cs (.../ViewCommandHandler.cs) (revision ef1c61d94f2aec3b4ff32fcf03253d7ad386c8e5) +++ Core/Common/src/Core.Common.Gui/Commands/ViewCommandHandler.cs (.../ViewCommandHandler.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -28,7 +28,7 @@ namespace Core.Common.Gui.Commands { /// - /// This class provides concrete implementation of . + /// This class provides concrete implementations for . /// public class ViewCommandHandler : IViewCommands { Index: Core/Common/src/Core.Common.Gui/Forms/IRibbonCommandHandler.cs =================================================================== diff -u -ref1c61d94f2aec3b4ff32fcf03253d7ad386c8e5 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/src/Core.Common.Gui/Forms/IRibbonCommandHandler.cs (.../IRibbonCommandHandler.cs) (revision ef1c61d94f2aec3b4ff32fcf03253d7ad386c8e5) +++ Core/Common/src/Core.Common.Gui/Forms/IRibbonCommandHandler.cs (.../IRibbonCommandHandler.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -32,7 +32,7 @@ public interface IRibbonCommandHandler { /// - /// Returns all commands provided by this command handler. + /// Gets all commands provided by this command handler. /// IEnumerable Commands { get; } Index: Core/Common/src/Core.Common.Gui/Forms/MainWindow/IMainWindow.cs =================================================================== diff -u -ref1c61d94f2aec3b4ff32fcf03253d7ad386c8e5 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/src/Core.Common.Gui/Forms/MainWindow/IMainWindow.cs (.../IMainWindow.cs) (revision ef1c61d94f2aec3b4ff32fcf03253d7ad386c8e5) +++ Core/Common/src/Core.Common.Gui/Forms/MainWindow/IMainWindow.cs (.../IMainWindow.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -45,7 +45,7 @@ string Title { get; set; } /// - /// Indicates if the main user interface is visible. + /// Gets a value indicating whether or not the main user interface is visible. /// bool Visible { get; } Index: Core/Common/src/Core.Common.Gui/Forms/MainWindow/MainWindow.xaml.cs =================================================================== diff -u -ref1c61d94f2aec3b4ff32fcf03253d7ad386c8e5 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/src/Core.Common.Gui/Forms/MainWindow/MainWindow.xaml.cs (.../MainWindow.xaml.cs) (revision ef1c61d94f2aec3b4ff32fcf03253d7ad386c8e5) +++ Core/Common/src/Core.Common.Gui/Forms/MainWindow/MainWindow.xaml.cs (.../MainWindow.xaml.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -116,7 +116,7 @@ } /// - /// Indicates whether this instance is disposed or not. + /// Gets a value indicating whether this window is disposed. /// public bool IsWindowDisposed { get; private set; } @@ -140,7 +140,7 @@ } /// - /// Indicates if the main user interface is visible. + /// Gets or sets a value indicating whether or not the main user interface is visible. /// /// When no gui has been set using . public bool Visible Index: Core/Common/src/Core.Common.Gui/Forms/MessageWindow/MessageWindowLogAppender.cs =================================================================== diff -u -ref1c61d94f2aec3b4ff32fcf03253d7ad386c8e5 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/src/Core.Common.Gui/Forms/MessageWindow/MessageWindowLogAppender.cs (.../MessageWindowLogAppender.cs) (revision ef1c61d94f2aec3b4ff32fcf03253d7ad386c8e5) +++ Core/Common/src/Core.Common.Gui/Forms/MessageWindow/MessageWindowLogAppender.cs (.../MessageWindowLogAppender.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -80,9 +80,9 @@ } /// - /// Indicates whether this appender should forward its messages to - /// (set to true) or should cache them when for when it's enabled at a later - /// time (set to false). + /// Gets or sets a value indicating whether or not this appender should forward its + /// messages to (set to true) or should cache + /// them for when it's enabled at a later time (set to false). /// public bool Enabled { Index: Core/Common/src/Core.Common.Gui/Forms/SplashScreen/SplashScreen.xaml.cs =================================================================== diff -u -ref1c61d94f2aec3b4ff32fcf03253d7ad386c8e5 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/src/Core.Common.Gui/Forms/SplashScreen/SplashScreen.xaml.cs (.../SplashScreen.xaml.cs) (revision ef1c61d94f2aec3b4ff32fcf03253d7ad386c8e5) +++ Core/Common/src/Core.Common.Gui/Forms/SplashScreen/SplashScreen.xaml.cs (.../SplashScreen.xaml.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -59,7 +59,8 @@ } /// - /// Indicates where or not the progress bar and progress label are visible in the window. + /// Gets or sets a value indicating whether or not the progress bar and progress + /// label are visible in the window. /// public bool HasProgress { Index: Core/Common/src/Core.Common.Gui/Forms/ViewManager/DockTabClosingEventArgs.cs =================================================================== diff -u -ref1c61d94f2aec3b4ff32fcf03253d7ad386c8e5 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/src/Core.Common.Gui/Forms/ViewManager/DockTabClosingEventArgs.cs (.../DockTabClosingEventArgs.cs) (revision ef1c61d94f2aec3b4ff32fcf03253d7ad386c8e5) +++ Core/Common/src/Core.Common.Gui/Forms/ViewManager/DockTabClosingEventArgs.cs (.../DockTabClosingEventArgs.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -35,7 +35,7 @@ public IView View { get; set; } /// - /// Indicates if the close action should be cancelled. + /// Gets or sets a value indicating whether or not the close action should be cancelled. /// public bool Cancel { get; set; } } Index: Core/Common/src/Core.Common.Gui/Forms/ViewManager/IDockingManager.cs =================================================================== diff -u -ref1c61d94f2aec3b4ff32fcf03253d7ad386c8e5 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/src/Core.Common.Gui/Forms/ViewManager/IDockingManager.cs (.../IDockingManager.cs) (revision ef1c61d94f2aec3b4ff32fcf03253d7ad386c8e5) +++ Core/Common/src/Core.Common.Gui/Forms/ViewManager/IDockingManager.cs (.../IDockingManager.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -33,7 +33,7 @@ public interface IDockingManager : IDisposable { /// - /// Occurs when the docking-bar of a view trying to close. + /// Occurs when the docking-bar of a view is trying to close. /// event EventHandler ViewBarClosing; @@ -53,7 +53,7 @@ IEnumerable Views { get; } /// - /// Adds the view at specified docking location. + /// Adds the view at a specified docking location. /// /// View to add. /// Location of the view. Index: Core/Common/src/Core.Common.Gui/Forms/ViewManager/IViewList.cs =================================================================== diff -u -ref1c61d94f2aec3b4ff32fcf03253d7ad386c8e5 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/src/Core.Common.Gui/Forms/ViewManager/IViewList.cs (.../IViewList.cs) (revision ef1c61d94f2aec3b4ff32fcf03253d7ad386c8e5) +++ Core/Common/src/Core.Common.Gui/Forms/ViewManager/IViewList.cs (.../IViewList.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -48,7 +48,7 @@ event NotifyCollectionChangedEventHandler CollectionChanged; /// - /// HACK: Hack to disable activation temporarily + /// HACK: Gets or sets a value indicating whether or not to disable activation temporarily. /// bool IgnoreActivation { get; set; } Index: Core/Common/src/Core.Common.Gui/GuiCore.cs =================================================================== diff -u -ref1c61d94f2aec3b4ff32fcf03253d7ad386c8e5 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/src/Core.Common.Gui/GuiCore.cs (.../GuiCore.cs) (revision ef1c61d94f2aec3b4ff32fcf03253d7ad386c8e5) +++ Core/Common/src/Core.Common.Gui/GuiCore.cs (.../GuiCore.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -123,7 +123,7 @@ viewCommandHandler = new ViewCommandHandler(this, this, this, this); storageCommandHandler = new StorageCommandHandler(projectStore, this, this, this, this, viewCommandHandler); exportImportCommandHandler = new ExportImportCommandHandler(MainWindow, ApplicationCore); - projectCommandsHandler = new ProjectCommandHandler(this, MainWindow, ApplicationCore, this, this); + projectCommandHandler = new ProjectCommandHandler(this, MainWindow, ApplicationCore, this, this); WindowsApplication.EnableVisualStyles(); ViewPropertyEditor.ViewCommands = ViewCommands; @@ -859,7 +859,7 @@ private ApplicationFeatureCommandHandler applicationFeatureCommands; private readonly ViewCommandHandler viewCommandHandler; - private readonly ProjectCommandHandler projectCommandsHandler; + private readonly ProjectCommandHandler projectCommandHandler; private readonly ExportImportCommandHandler exportImportCommandHandler; private StorageCommandHandler storageCommandHandler; @@ -883,7 +883,7 @@ { get { - return projectCommandsHandler; + return projectCommandHandler; } } Index: Core/Common/src/Core.Common.Gui/Settings/SettingsHelper.cs =================================================================== diff -u -ref1c61d94f2aec3b4ff32fcf03253d7ad386c8e5 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/src/Core.Common.Gui/Settings/SettingsHelper.cs (.../SettingsHelper.cs) (revision ef1c61d94f2aec3b4ff32fcf03253d7ad386c8e5) +++ Core/Common/src/Core.Common.Gui/Settings/SettingsHelper.cs (.../SettingsHelper.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -62,7 +62,7 @@ /// /// Gets the application local user settings directory. /// - /// Directory path to where the user settings can be found + /// Directory path where the user settings can be found. public static string GetApplicationLocalUserSettingsDirectory() { var localSettingsDirectoryPath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData); Index: Core/Common/test/Core.Common.Gui.Test/Attributes/DynamicVisibleAttributeTest.cs =================================================================== diff -u -rb92517dbc9956b930a6cfc7f96a1f762dfa41cf6 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/test/Core.Common.Gui.Test/Attributes/DynamicVisibleAttributeTest.cs (.../DynamicVisibleAttributeTest.cs) (revision b92517dbc9956b930a6cfc7f96a1f762dfa41cf6) +++ Core/Common/test/Core.Common.Gui.Test/Attributes/DynamicVisibleAttributeTest.cs (.../DynamicVisibleAttributeTest.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -26,10 +26,10 @@ public void IsVisible_NoPropertyName_ReturnTrue(string propertyName) { // Call - var isReadOnly = DynamicVisibleAttribute.IsVisible(new object(), propertyName); + var isVisible = DynamicVisibleAttribute.IsVisible(new object(), propertyName); // Assert - Assert.IsTrue(isReadOnly); + Assert.IsTrue(isVisible); } [Test] @@ -53,10 +53,10 @@ var o = new ClassWithPropertyWithoutDynamicVisibleAttribute(); // Call - var isReadOnly = DynamicVisibleAttribute.IsVisible(o, "Property"); + var isVisible = DynamicVisibleAttribute.IsVisible(o, "Property"); // Assert - Assert.IsTrue(isReadOnly); + Assert.IsTrue(isVisible); } [Test] @@ -142,16 +142,16 @@ [Test] [TestCase(false)] [TestCase(true)] - public void IsVisible_ClassWithDynamicVisibleProperty_ReturnResultFromValidationMethod(bool isReadOnly) + public void IsVisible_ClassWithDynamicVisibleProperty_ReturnResultFromValidationMethod(bool isVisible) { // Setup - var o = new ClassWithDynamicVisibleProperty(isReadOnly); + var o = new ClassWithDynamicVisibleProperty(isVisible); // Call var result = DynamicVisibleAttribute.IsVisible(o, "Property"); // Assert - Assert.AreEqual(isReadOnly, result); + Assert.AreEqual(isVisible, result); } } } \ No newline at end of file Index: Core/Common/test/Core.Common.Gui.Test/Attributes/DynamicVisibleValidationMethodAttributeTest.cs =================================================================== diff -u -rb92517dbc9956b930a6cfc7f96a1f762dfa41cf6 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/test/Core.Common.Gui.Test/Attributes/DynamicVisibleValidationMethodAttributeTest.cs (.../DynamicVisibleValidationMethodAttributeTest.cs) (revision b92517dbc9956b930a6cfc7f96a1f762dfa41cf6) +++ Core/Common/test/Core.Common.Gui.Test/Attributes/DynamicVisibleValidationMethodAttributeTest.cs (.../DynamicVisibleValidationMethodAttributeTest.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -93,16 +93,16 @@ [Test] [TestCase(false)] [TestCase(true)] - public void CreateIsVisibleMethod_ClassWithDynamicVisibleProperty_ReturnResultFromValidationMethod(bool isReadOnly) + public void CreateIsVisibleMethod_ClassWithDynamicVisibleProperty_ReturnResultFromValidationMethod(bool isVisible) { // Setup - var o = new ClassWithDynamicVisibleProperty(isReadOnly); + var o = new ClassWithDynamicVisibleProperty(isVisible); // Call var result = DynamicVisibleValidationMethodAttribute.CreateIsVisibleMethod(o); // Assert - Assert.AreEqual(isReadOnly, result("Property")); + Assert.AreEqual(isVisible, result("Property")); } } } \ No newline at end of file Index: Core/Common/test/Core.Common.Gui.Test/Attributes/TestCaseClasses/DynamicVisibilityTestCases.cs =================================================================== diff -u -rb92517dbc9956b930a6cfc7f96a1f762dfa41cf6 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/test/Core.Common.Gui.Test/Attributes/TestCaseClasses/DynamicVisibilityTestCases.cs (.../DynamicVisibilityTestCases.cs) (revision b92517dbc9956b930a6cfc7f96a1f762dfa41cf6) +++ Core/Common/test/Core.Common.Gui.Test/Attributes/TestCaseClasses/DynamicVisibilityTestCases.cs (.../DynamicVisibilityTestCases.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -19,13 +19,13 @@ public double Property { get; set; } [DynamicVisibleValidationMethod] - public bool IsDynamicReadOnly1(string propertyName) + public bool IsDynamicVisible1(string propertyName) { return true; } [DynamicVisibleValidationMethod] - public bool IsDynamicReadOnly2(string propertyName) + public bool IsDynamicVisible2(string propertyName) { return false; } @@ -37,7 +37,7 @@ public double Property { get; set; } [DynamicVisibleValidationMethod] - public int IsDynamicReadOnly(string propertyName) + public int IsDynamicVisible(string propertyName) { return 0; } @@ -49,7 +49,7 @@ public double Property { get; set; } [DynamicVisibleValidationMethod] - public bool IsDynamicReadOnly(object o, string propertyName) + public bool IsDynamicVisible(object o, string propertyName) { return true; } @@ -61,7 +61,7 @@ public double Property { get; set; } [DynamicVisibleValidationMethod] - public bool IsDynamicReadOnly(object o) + public bool IsDynamicVisible(object o) { return true; } Index: Core/Common/test/Core.Common.Gui.Test/Forms/SplashScreen/SplashScreenTest.cs =================================================================== diff -u -ref1c61d94f2aec3b4ff32fcf03253d7ad386c8e5 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/test/Core.Common.Gui.Test/Forms/SplashScreen/SplashScreenTest.cs (.../SplashScreenTest.cs) (revision ef1c61d94f2aec3b4ff32fcf03253d7ad386c8e5) +++ Core/Common/test/Core.Common.Gui.Test/Forms/SplashScreen/SplashScreenTest.cs (.../SplashScreenTest.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -11,7 +11,7 @@ { [Test] [RequiresSTA] - public void Shutdown_SlashScreenShown_ShouldBeClosed() + public void Shutdown_SplashScreenShown_ShouldBeClosed() { // Setup var screen = new Gui.Forms.SplashScreen.SplashScreen(); Index: Core/Common/test/Core.Common.Gui.Test/PropertyBag/DynamicPropertyBagTest.cs =================================================================== diff -u -ref1c61d94f2aec3b4ff32fcf03253d7ad386c8e5 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Common/test/Core.Common.Gui.Test/PropertyBag/DynamicPropertyBagTest.cs (.../DynamicPropertyBagTest.cs) (revision ef1c61d94f2aec3b4ff32fcf03253d7ad386c8e5) +++ Core/Common/test/Core.Common.Gui.Test/PropertyBag/DynamicPropertyBagTest.cs (.../DynamicPropertyBagTest.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -233,7 +233,7 @@ var dynamicallyVisiblePropertyName = TypeUtils.GetMemberName(tp => tp.Name); var namePropertyDescriptor = propertyDescriptorCollection.Find(dynamicallyVisiblePropertyName, false); - // TearDown + // Assert Assert.IsTrue(namePropertyDescriptor.IsBrowsable, string.Format("{0} should be visible", dynamicallyVisiblePropertyName)); } Index: Core/Components/src/Core.Components.Charting/IChart.cs =================================================================== diff -u -r4512af7782ee31b36941bb280b54d9da2953dd71 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Components/src/Core.Components.Charting/IChart.cs (.../IChart.cs) (revision 4512af7782ee31b36941bb280b54d9da2953dd71) +++ Core/Components/src/Core.Components.Charting/IChart.cs (.../IChart.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -29,12 +29,12 @@ public interface IChart { /// - /// Gets a value representing whether the chart can be panned with the left mouse button. + /// Gets a value indicating whether or not the chart can be panned with the left mouse button. /// bool IsPanningEnabled { get; } /// - /// Gets a value representing whether the chart can be zoomed by rectangle with the left mouse button. + /// Gets a value indicating whether or not the chart can be zoomed by rectangle with the left mouse button. /// bool IsRectangleZoomingEnabled { get; } Index: Core/Components/src/Core.Components.OxyPlot/DynamicPlotController.cs =================================================================== diff -u -r4512af7782ee31b36941bb280b54d9da2953dd71 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Core/Components/src/Core.Components.OxyPlot/DynamicPlotController.cs (.../DynamicPlotController.cs) (revision 4512af7782ee31b36941bb280b54d9da2953dd71) +++ Core/Components/src/Core.Components.OxyPlot/DynamicPlotController.cs (.../DynamicPlotController.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -29,12 +29,12 @@ internal sealed class DynamicPlotController : ControllerBase, IPlotController { /// - /// Gets a value representing whether panning is enabled for the . + /// Gets a value indicating whether or not panning is enabled for the . /// public bool IsPanningEnabled { get; private set; } /// - /// Gets a value representing whether zooming by rectangle is enabled for the . + /// Gets a value indicating whether or not zooming by rectangle is enabled for the . /// public bool IsRectangleZoomingEnabled { get; private set; } Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.IO/HydraulicBoundarySqLiteDatabaseReader.cs =================================================================== diff -u -rde09e649989e2c4f858632345841f7b9971debe3 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.IO/HydraulicBoundarySqLiteDatabaseReader.cs (.../HydraulicBoundarySqLiteDatabaseReader.cs) (revision de09e649989e2c4f858632345841f7b9971debe3) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.IO/HydraulicBoundarySqLiteDatabaseReader.cs (.../HydraulicBoundarySqLiteDatabaseReader.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -66,8 +66,8 @@ public string Version { get; private set; } /// - /// Gets the value true if locations can be read using the . - /// false otherwise. + /// Gets a value indicating whether or not more hydraulic boundary locations can + /// be read using the . /// public bool HasNext { get; private set; } Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/IPipingCalculationItem.cs =================================================================== diff -u -r4512af7782ee31b36941bb280b54d9da2953dd71 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Ringtoets/Piping/src/Ringtoets.Piping.Data/IPipingCalculationItem.cs (.../IPipingCalculationItem.cs) (revision 4512af7782ee31b36941bb280b54d9da2953dd71) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/IPipingCalculationItem.cs (.../IPipingCalculationItem.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -34,7 +34,7 @@ string Name { get; } /// - /// Gets a value indicating whether this calculation item contains piping calculation outputs. + /// Gets a value indicating whether or not this calculation item contains piping calculation outputs. /// bool HasOutput { get; } } Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingCalculation.cs =================================================================== diff -u -rf98cc7191a717793f69485dad2923cd34f6d48de -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingCalculation.cs (.../PipingCalculation.cs) (revision f98cc7191a717793f69485dad2923cd34f6d48de) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingCalculation.cs (.../PipingCalculation.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -63,7 +63,7 @@ public string Name { get; set; } /// - /// Gets a value indicating whether the has . + /// Gets a value indicating whether or not the has . /// public bool HasOutput { Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingCalculationGroup.cs =================================================================== diff -u -rf98cc7191a717793f69485dad2923cd34f6d48de -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingCalculationGroup.cs (.../PipingCalculationGroup.cs) (revision f98cc7191a717793f69485dad2923cd34f6d48de) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingCalculationGroup.cs (.../PipingCalculationGroup.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -58,7 +58,7 @@ public IList Children { get; private set; } /// - /// Gets a value indicating whether is editable or not. + /// Gets a value indicating whether or not is editable. /// public bool IsNameEditable { get; private set; } Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingSoilLayer.cs =================================================================== diff -u -r4512af7782ee31b36941bb280b54d9da2953dd71 -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingSoilLayer.cs (.../PipingSoilLayer.cs) (revision 4512af7782ee31b36941bb280b54d9da2953dd71) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingSoilLayer.cs (.../PipingSoilLayer.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -42,7 +42,7 @@ public double Top { get; private set; } /// - /// Gets or sets the boolean value which represents whether the is an aquifer. + /// Gets or sets a value indicating whether or not the is an aquifer. /// public bool IsAquifer { get; set; } Index: Ringtoets/Piping/src/Ringtoets.Piping.IO/SoilProfile/PipingSoilProfileReader.cs =================================================================== diff -u -rc6dd26c14af11a7e13f783f578466e46b463165a -rb743d495d10779d51c8f75b7cb04b5babb4b226f --- Ringtoets/Piping/src/Ringtoets.Piping.IO/SoilProfile/PipingSoilProfileReader.cs (.../PipingSoilProfileReader.cs) (revision c6dd26c14af11a7e13f783f578466e46b463165a) +++ Ringtoets/Piping/src/Ringtoets.Piping.IO/SoilProfile/PipingSoilProfileReader.cs (.../PipingSoilProfileReader.cs) (revision b743d495d10779d51c8f75b7cb04b5babb4b226f) @@ -67,14 +67,14 @@ public int Count { get; private set; } /// - /// Gets the value true if profiles can be read using the . - /// false otherwise. + /// Gets a value indicating whether or not more soil profiles can be read using + /// the . /// public bool HasNext { get; private set; } /// - /// Reads the information for the next profile from the database and creates a instance - /// of the information. + /// Reads the information for the next profile from the database and creates a + /// instance of the information. /// /// The next from the database, or null if no more profiles can be read. /// Thrown when reading the profile in the database contained a non-parsable geometry.