1- // Copyright (c) Dennis Fischer . All Rights Reserved.
1+ // Copyright (c) Tunnel Vision Laboratories, LLC . All Rights Reserved.
22// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33
44namespace StyleCop . Analyzers . Status . Generator
@@ -12,83 +12,84 @@ namespace StyleCop.Analyzers.Status.Generator
1212 public class StyleCopDiagnostic
1313 {
1414 /// <summary>
15- /// The Id of the diagnostic including the prefix 'SA' or 'SX'
15+ /// Gets or sets the ID of the diagnostic, including the prefix 'SA' or 'SX'.
1616 /// </summary>
1717 /// <value>
18- /// The Id of the diagnostic including the prefix 'SA' or 'SX'
18+ /// The ID of the diagnostic including, the prefix 'SA' or 'SX'.
1919 /// </value>
2020 public string Id { get ; set ; }
2121
2222 /// <summary>
23- /// The short name if the diagnostic that is used in the class name.
23+ /// Gets or sets the short name if the diagnostic that is used in the class name.
2424 /// </summary>
2525 /// <value>
2626 /// The short name if the diagnostic that is used in the class name.
2727 /// </value>
2828 public string Name { get ; set ; }
2929
3030 /// <summary>
31- /// Whether or not the diagnostic is implemented.
31+ /// Gets or sets a value indicating whether the diagnostic is implemented.
3232 /// </summary>
3333 /// <value>
34- /// Whether or not the diagnostic is implemented.
34+ /// <see langword="true"/> if the diagnostic is implemented; otherwise <see langword="false"/> .
3535 /// </value>
3636 public bool HasImplementation { get ; set ; }
3737
3838 /// <summary>
39- /// Represents if the diagnostic is enabled or not . This can indicate if the
40- /// diagnostic is enabled by default or not, or if it is disabled because
39+ /// Gets or sets a value indicating whether the diagnostic is enabled. This can indicate if the
40+ /// diagnostic is enabled by default, and if not, whether it is disabled because
4141 /// there are no tests for the diagnostic.
4242 /// </summary>
4343 /// <value>
44- /// Represents if the diagnostic is enabled or not. This can indicate if the
45- /// diagnostic is enabled by default or not, or if it is disabled because
46- /// there are no tests for the diagnostic.
44+ /// <list type="bullet">
45+ /// <item>DisabledNoTests</item>
46+ /// <item>DisabledAlternative</item>
47+ /// <item>EnabledByDefault</item>
48+ /// <item>DisabledByDefault</item>
49+ /// </list>
4750 /// </value>
4851 public string Status { get ; set ; }
4952
5053 /// <summary>
51- /// Represents whether or not there is a code fix for the diagnostic.
54+ /// Gets or sets a value indicating the code fix status for the diagnostic.
5255 /// </summary>
5356 /// <value>
54- /// Represents whether or not there is a code fix for the diagnostic.
57+ /// A value indicating the code fix status for the diagnostic.
5558 /// </value>
5659 [ JsonConverter ( typeof ( StringEnumConverter ) ) ]
5760 public CodeFixStatus CodeFixStatus { get ; set ; }
5861
5962 /// <summary>
60- /// Returns the reason why a code fix is not implemented, or null if there is
63+ /// Gets or sets the reason why a code fix is not implemented, or <see langword=" null"/> if there is
6164 /// no reason.
6265 /// </summary>
6366 /// <value>
64- /// Returns the reason why a code fix is not implemented, or null if there is
67+ /// The reason why a code fix is not implemented, or <see langword=" null"/> if there is
6568 /// no reason.
6669 /// </value>
6770 public string NoCodeFixReason { get ; set ; }
6871
6972 /// <summary>
70- /// Returns the title of this diagnostic
71- /// no reason.
73+ /// Gets or sets the title of this diagnostic.
7274 /// </summary>
7375 /// <value>
74- /// Returns the title of this diagnostic
76+ /// The title of this diagnostic.
7577 /// </value>
7678 public string Title { get ; set ; }
7779
7880 /// <summary>
79- /// Returns the category of this diagnostic
80- /// no reason.
81+ /// Gets or sets the category of this diagnostic.
8182 /// </summary>
8283 /// <value>
83- /// Returns the category of this diagnostic
84+ /// The category of this diagnostic.
8485 /// </value>
8586 public string Category { get ; set ; }
8687
8788 /// <summary>
88- /// Returns help link for this diagnostic
89+ /// Gets or sets the help link for this diagnostic.
8990 /// </summary>
9091 /// <value>
91- /// Returns help link for this diagnostic
92+ /// The help link for this diagnostic.
9293 /// </value>
9394 public string HelpLink { get ; set ; }
9495
0 commit comments