Index: Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs
===================================================================
diff -u -r93c8f28dacbc0152e4cfc3cf596cd9357cf97f21 -r464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e
--- Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs (.../App.xaml.cs) (revision 93c8f28dacbc0152e4cfc3cf596cd9357cf97f21)
+++ Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs (.../App.xaml.cs) (revision 464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e)
@@ -62,8 +62,6 @@
///
public partial class App
{
- private delegate void ExceptionDelegate(Exception exception, bool isTerminating);
-
// Start application after this process will exit (used during restart)
private const string argumentWaitForProcess = "--wait-for-process=";
private const int numberOfDaysToKeepLogFiles = 30;
@@ -83,6 +81,8 @@
log.Info(string.Format(Core.Common.Gui.Properties.Resources.App_Starting_Ringtoets_version_0, SettingsHelper.ApplicationVersion));
}
+ private delegate void ExceptionDelegate(Exception exception, bool isTerminating);
+
protected override void OnExit(ExitEventArgs e)
{
if (singleInstanceMutex != null)
Index: Core/Common/src/Core.Common.Base/Geometry/Intersection2DType.cs
===================================================================
diff -u -rd305785c5a4330022a5d01cc62ea793a0ae1c5d8 -r464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e
--- Core/Common/src/Core.Common.Base/Geometry/Intersection2DType.cs (.../Intersection2DType.cs) (revision d305785c5a4330022a5d01cc62ea793a0ae1c5d8)
+++ Core/Common/src/Core.Common.Base/Geometry/Intersection2DType.cs (.../Intersection2DType.cs) (revision 464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e)
@@ -30,10 +30,12 @@
/// No intersections have been found.
///
DoesNotIntersect,
+
///
/// Intersections have been found.
///
Intersects,
+
///
/// There is some overlap between two elements.
///
Index: Core/Common/src/Core.Common.Base/Service/Activity.cs
===================================================================
diff -u -rf62076c7d8b6a65856fbab6a1b34b4234aa319e5 -r464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e
--- Core/Common/src/Core.Common.Base/Service/Activity.cs (.../Activity.cs) (revision f62076c7d8b6a65856fbab6a1b34b4234aa319e5)
+++ Core/Common/src/Core.Common.Base/Service/Activity.cs (.../Activity.cs) (revision 464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e)
@@ -37,15 +37,15 @@
///
public abstract class Activity
{
+ private readonly ILog log = LogManager.GetLogger(typeof(Activity));
+
+ private string progressText;
+
///
/// Event for notifying progress changes.
///
public event EventHandler ProgressChanged;
- private readonly ILog log = LogManager.GetLogger(typeof(Activity));
-
- private string progressText;
-
///
/// Constructs a new .
///
Index: Core/Common/src/Core.Common.Controls.TreeView/TreeViewControl.cs
===================================================================
diff -u -r223b2a4edc4ac816051c7eeecb735c34a6246574 -r464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e
--- Core/Common/src/Core.Common.Controls.TreeView/TreeViewControl.cs (.../TreeViewControl.cs) (revision 223b2a4edc4ac816051c7eeecb735c34a6246574)
+++ Core/Common/src/Core.Common.Controls.TreeView/TreeViewControl.cs (.../TreeViewControl.cs) (revision 464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e)
@@ -76,10 +76,6 @@
///
public partial class TreeViewControl : UserControl
{
- public event EventHandler DataDoubleClick;
- public event EventHandler SelectedDataChanged;
- public event EventHandler> DataDeleted; // TODO; Way to explicit!
-
private const int maximumTextLength = 259;
private const string stateImageLocationString = "StateImage";
private const int uncheckedCheckBoxStateImageIndex = 0;
@@ -91,6 +87,10 @@
private object data;
+ public event EventHandler DataDoubleClick;
+ public event EventHandler SelectedDataChanged;
+ public event EventHandler> DataDeleted; // TODO; Way to explicit!
+
///
/// Creates a new instance of .
///
Index: Core/Common/src/Core.Common.Controls/TextEditor/RichTextBoxControl.cs
===================================================================
diff -u -r95734a1c508bcca7ed8943612f1d890f653df3d0 -r464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e
--- Core/Common/src/Core.Common.Controls/TextEditor/RichTextBoxControl.cs (.../RichTextBoxControl.cs) (revision 95734a1c508bcca7ed8943612f1d890f653df3d0)
+++ Core/Common/src/Core.Common.Controls/TextEditor/RichTextBoxControl.cs (.../RichTextBoxControl.cs) (revision 464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e)
@@ -30,14 +30,14 @@
///
public partial class RichTextBoxControl : UserControl
{
+ private bool loaded;
+ private string rtfToSetAfterLoad;
+
///
/// The event which is send when the text changes.
///
public event EventHandler TextBoxValueChanged;
- private bool loaded;
- private string rtfToSetAfterLoad;
-
///
/// Creates a new instance of .
///
Index: Core/Common/src/Core.Common.Gui/Forms/PropertyGridView/PropertyGridView.cs
===================================================================
diff -u -r1f2e8750b43af706757de6251ce5b6ac2dabea29 -r464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e
--- Core/Common/src/Core.Common.Gui/Forms/PropertyGridView/PropertyGridView.cs (.../PropertyGridView.cs) (revision 1f2e8750b43af706757de6251ce5b6ac2dabea29)
+++ Core/Common/src/Core.Common.Gui/Forms/PropertyGridView/PropertyGridView.cs (.../PropertyGridView.cs) (revision 464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e)
@@ -38,11 +38,6 @@
///
public class PropertyGridView : PropertyGrid, IView, IObserver
{
- ///
- /// This delegate enabled asynchronous calls to methods without arguments.
- ///
- private delegate void ArgumentlessDelegate();
-
private readonly IApplicationSelection applicationSelection;
private readonly IPropertyResolver propertyResolver;
@@ -51,6 +46,11 @@
private IObservable observable;
///
+ /// This delegate enabled asynchronous calls to methods without arguments.
+ ///
+ private delegate void ArgumentlessDelegate();
+
+ ///
/// Initializes a new instance of the class.
///
/// The application selection mechanism.
Index: Core/Common/src/Core.Common.Gui/Forms/ViewHost/AvalonDockViewHost.xaml.cs
===================================================================
diff -u -r05af76ce5c227f3b85274df85d6c8e8fd5110abd -r464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e
--- Core/Common/src/Core.Common.Gui/Forms/ViewHost/AvalonDockViewHost.xaml.cs (.../AvalonDockViewHost.xaml.cs) (revision 05af76ce5c227f3b85274df85d6c8e8fd5110abd)
+++ Core/Common/src/Core.Common.Gui/Forms/ViewHost/AvalonDockViewHost.xaml.cs (.../AvalonDockViewHost.xaml.cs) (revision 464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e)
@@ -37,11 +37,6 @@
///
public partial class AvalonDockViewHost : IViewHost
{
- public event EventHandler ActiveDocumentViewChanging;
- public event EventHandler ActiveDocumentViewChanged;
- public event EventHandler ActiveViewChanged;
- public event EventHandler ViewClosed;
-
private readonly List toolViews;
private readonly List documentViews;
private readonly List hostControls;
@@ -50,6 +45,11 @@
private IView activeDocumentView;
private bool removingProgrammatically;
+ public event EventHandler ActiveDocumentViewChanging;
+ public event EventHandler ActiveDocumentViewChanged;
+ public event EventHandler ActiveViewChanged;
+ public event EventHandler ViewClosed;
+
///
/// Creates a new instance of the class.
///
Index: Core/Plugins/src/Core.Plugins.ProjectExplorer/ProjectExplorerViewController.cs
===================================================================
diff -u -r0abf371c5f6f450232d49f3c1a031476063ce04b -r464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e
--- Core/Plugins/src/Core.Plugins.ProjectExplorer/ProjectExplorerViewController.cs (.../ProjectExplorerViewController.cs) (revision 0abf371c5f6f450232d49f3c1a031476063ce04b)
+++ Core/Plugins/src/Core.Plugins.ProjectExplorer/ProjectExplorerViewController.cs (.../ProjectExplorerViewController.cs) (revision 464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e)
@@ -37,11 +37,6 @@
///
public class ProjectExplorerViewController : IDisposable
{
- ///
- /// Fired when the project explorer view has been opened.
- ///
- public event EventHandler OnOpenView;
-
private readonly IViewController viewController;
private readonly IEnumerable treeNodeInfos;
private readonly IApplicationSelection applicationSelection;
@@ -50,6 +45,11 @@
private ProjectExplorer projectExplorer;
///
+ /// Fired when the project explorer view has been opened.
+ ///
+ public event EventHandler OnOpenView;
+
+ ///
/// Creates a new instance of .
///
/// The provider of view related commands.
Index: Ringtoets.DotSettings
===================================================================
diff -u -r12523c3e374d5e02309863685e7fd973778e8514 -r464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e
--- Ringtoets.DotSettings (.../Ringtoets.DotSettings) (revision 12523c3e374d5e02309863685e7fd973778e8514)
+++ Ringtoets.DotSettings (.../Ringtoets.DotSettings) (revision 464b40a4a7f3e9e96eaa69b39bcad7f57fc60d7e)
@@ -104,17 +104,6 @@
<Entry DisplayName="Anything else" />
</TypePattern>
<TypePattern DisplayName="Other classes">
- <Entry DisplayName="Event and Delegates">
- <Entry.Match>
- <Or>
- <Kind Is="Event" />
- <Kind Is="Delegate" />
- </Or>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- </Entry.SortBy>
- </Entry>
<Entry DisplayName="Enumerators (move to own class)">
<Entry.Match>
<Kind Is="Enum" />
@@ -161,6 +150,17 @@
<Access />
</Entry.SortBy>
</Entry>
+ <Entry DisplayName="Event and Delegates">
+ <Entry.Match>
+ <Or>
+ <Kind Is="Event" />
+ <Kind Is="Delegate" />
+ </Or>
+ </Entry.Match>
+ <Entry.SortBy>
+ <Access />
+ </Entry.SortBy>
+ </Entry>
<Entry DisplayName="Constructors">
<Entry.Match>
<Kind Is="Constructor" />