1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/*
* SonarQube, open source software quality management tool.
* Copyright (C) 2008-2013 SonarSource
* mailto:contact AT sonarsource DOT com
*
* SonarQube is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* SonarQube is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonar.squid.api;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.sonar.check.Message;
import java.text.MessageFormat;
import java.util.Locale;
public class CheckMessage implements Message {
private Integer line;
private Double cost;
private SourceCode sourceCode;
private Object check;
private String defaultMessage;
private Object[] messageArguments;
private Boolean bypassExclusion;
public CheckMessage(Object check, String message, Object... messageArguments) {
this.check = check;
this.defaultMessage = message;
this.messageArguments = messageArguments;
}
/**
* @deprecated replaced by the other constructor since 2.12. See SONAR-2875.
*/
@Deprecated
public CheckMessage(CodeCheck check, String message, Object... messageArguments) {
this((Object)check, message, messageArguments);
}
public void setSourceCode(SourceCode sourceCode) {
this.sourceCode = sourceCode;
}
public SourceCode getSourceCode() {
return sourceCode;
}
public void setLine(int line) {
this.line = line;
}
public Integer getLine() {
return line;
}
public void setCost(double cost) {
this.cost = cost;
}
public Double getCost() {
return cost;
}
public void setBypassExclusion(boolean bypassExclusion) {
this.bypassExclusion = bypassExclusion;
}
public boolean isBypassExclusion() {
return bypassExclusion == null ? false : bypassExclusion;
}
/**
* @deprecated replaced by getCheck() since 2.12. Warning, to be called only if check is CodeCheck.
*/
@Deprecated
public CodeCheck getChecker() {
return (CodeCheck)check;
}
public Object getCheck() {
return check;
}
public String getDefaultMessage() {
return defaultMessage;
}
public Object[] getMessageArguments() {
return messageArguments;
}
public String getText(Locale locale) {
return formatDefaultMessage();
}
@Override
public String toString() {
return new ToStringBuilder(this).append("source", sourceCode).append("check", check).append("msg", defaultMessage)
.append("line", line).toString();
}
public String formatDefaultMessage() {
if (messageArguments.length == 0) {
return defaultMessage;
} else {
return MessageFormat.format(defaultMessage, messageArguments);
}
}
}
|