Index: Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs =================================================================== diff -u -r240b1ce588b88f05053cee8b2ce29435f5a69219 -r8ea290771f29a7f721b93ced2777ab794eb0384b --- Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs (.../App.xaml.cs) (revision 240b1ce588b88f05053cee8b2ce29435f5a69219) +++ Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs (.../App.xaml.cs) (revision 8ea290771f29a7f721b93ced2777ab794eb0384b) @@ -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 -r8ea290771f29a7f721b93ced2777ab794eb0384b --- 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 8ea290771f29a7f721b93ced2777ab794eb0384b) @@ -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 -r8ea290771f29a7f721b93ced2777ab794eb0384b --- 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 8ea290771f29a7f721b93ced2777ab794eb0384b) @@ -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 -r8ea290771f29a7f721b93ced2777ab794eb0384b --- 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 8ea290771f29a7f721b93ced2777ab794eb0384b) @@ -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 -rd29f87646094d914458a12f2275d02681ec36730 -r8ea290771f29a7f721b93ced2777ab794eb0384b --- Core/Common/src/Core.Common.Controls/TextEditor/RichTextBoxControl.cs (.../RichTextBoxControl.cs) (revision d29f87646094d914458a12f2275d02681ec36730) +++ Core/Common/src/Core.Common.Controls/TextEditor/RichTextBoxControl.cs (.../RichTextBoxControl.cs) (revision 8ea290771f29a7f721b93ced2777ab794eb0384b) @@ -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 -r8ea290771f29a7f721b93ced2777ab794eb0384b --- 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 8ea290771f29a7f721b93ced2777ab794eb0384b) @@ -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 -r66829bb74aece3e8c0843d8dd3e76fccdf067796 -r8ea290771f29a7f721b93ced2777ab794eb0384b --- Core/Common/src/Core.Common.Gui/Forms/ViewHost/AvalonDockViewHost.xaml.cs (.../AvalonDockViewHost.xaml.cs) (revision 66829bb74aece3e8c0843d8dd3e76fccdf067796) +++ Core/Common/src/Core.Common.Gui/Forms/ViewHost/AvalonDockViewHost.xaml.cs (.../AvalonDockViewHost.xaml.cs) (revision 8ea290771f29a7f721b93ced2777ab794eb0384b) @@ -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 -rae8af28b6d5528cbbaa329dcffea6c8dbbe2a39f -r8ea290771f29a7f721b93ced2777ab794eb0384b --- Core/Plugins/src/Core.Plugins.ProjectExplorer/ProjectExplorerViewController.cs (.../ProjectExplorerViewController.cs) (revision ae8af28b6d5528cbbaa329dcffea6c8dbbe2a39f) +++ Core/Plugins/src/Core.Plugins.ProjectExplorer/ProjectExplorerViewController.cs (.../ProjectExplorerViewController.cs) (revision 8ea290771f29a7f721b93ced2777ab794eb0384b) @@ -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 -r805900e6c21f2b90ae2c238afb48dc054f769084 -r8ea290771f29a7f721b93ced2777ab794eb0384b --- Ringtoets.DotSettings (.../Ringtoets.DotSettings) (revision 805900e6c21f2b90ae2c238afb48dc054f769084) +++ Ringtoets.DotSettings (.../Ringtoets.DotSettings) (revision 8ea290771f29a7f721b93ced2777ab794eb0384b) @@ -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" />