1 | // |
---|
2 | // IssueAttribute.cs |
---|
3 | // |
---|
4 | // Author: |
---|
5 | // Mike Krüger <mkrueger@xamarin.com> |
---|
6 | // |
---|
7 | // Copyright (c) 2012 Xamarin Inc. (http://xamarin.com) |
---|
8 | // |
---|
9 | // Permission is hereby granted, free of charge, to any person obtaining a copy |
---|
10 | // of this software and associated documentation files (the "Software"), to deal |
---|
11 | // in the Software without restriction, including without limitation the rights |
---|
12 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
---|
13 | // copies of the Software, and to permit persons to whom the Software is |
---|
14 | // furnished to do so, subject to the following conditions: |
---|
15 | // |
---|
16 | // The above copyright notice and this permission notice shall be included in |
---|
17 | // all copies or substantial portions of the Software. |
---|
18 | // |
---|
19 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
---|
20 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
---|
21 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
---|
22 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
---|
23 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
---|
24 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
---|
25 | // THE SOFTWARE. |
---|
26 | using System; |
---|
27 | using System.Collections.Generic; |
---|
28 | using ICSharpCode.NRefactory.Refactoring; |
---|
29 | |
---|
30 | namespace ICSharpCode.NRefactory.CSharp |
---|
31 | { |
---|
32 | [AttributeUsage(AttributeTargets.Class)] |
---|
33 | public class IssueDescriptionAttribute : System.Attribute |
---|
34 | { |
---|
35 | public string Title { get; private set;} |
---|
36 | public string Description { get; set; } |
---|
37 | public string Category { get; set; } |
---|
38 | |
---|
39 | public string AnalysisDisableKeyword { get; set; } |
---|
40 | public string SuppressMessageCategory { get; set; } |
---|
41 | public string SuppressMessageCheckId { get; set; } |
---|
42 | public int PragmaWarning { get; set; } |
---|
43 | public bool IsEnabledByDefault { get; set; } |
---|
44 | public bool SupportsAutoFix { get; set; } |
---|
45 | |
---|
46 | public Severity Severity { get; set; } |
---|
47 | |
---|
48 | public IssueDescriptionAttribute (string title) |
---|
49 | { |
---|
50 | Title = title; |
---|
51 | Severity = Severity.Suggestion; |
---|
52 | IsEnabledByDefault = true; |
---|
53 | } |
---|
54 | } |
---|
55 | |
---|
56 | [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] |
---|
57 | public class SubIssueAttribute : System.Attribute |
---|
58 | { |
---|
59 | public string Title { get; private set;} |
---|
60 | public string Description { get; set; } |
---|
61 | |
---|
62 | public bool? IsEnabledByDefault { get; set; } |
---|
63 | public Severity? Severity { get; set; } |
---|
64 | |
---|
65 | public SubIssueAttribute (string title) |
---|
66 | { |
---|
67 | Title = title; |
---|
68 | } |
---|
69 | |
---|
70 | public SubIssueAttribute (string title, Severity severity) |
---|
71 | { |
---|
72 | Title = title; |
---|
73 | this.Severity = severity; |
---|
74 | } |
---|
75 | |
---|
76 | public SubIssueAttribute (string title, bool isEnabledByDefault) |
---|
77 | { |
---|
78 | Title = title; |
---|
79 | this.IsEnabledByDefault = isEnabledByDefault; |
---|
80 | } |
---|
81 | |
---|
82 | public SubIssueAttribute (string title, Severity severity, bool isEnabledByDefault) |
---|
83 | { |
---|
84 | Title = title; |
---|
85 | this.Severity = severity; |
---|
86 | this.IsEnabledByDefault = isEnabledByDefault; |
---|
87 | } |
---|
88 | |
---|
89 | } |
---|
90 | } |
---|
91 | |
---|