Package org.sonar.api.scan.issue.filter
Interface FilterableIssue
-
@ThreadSafe @Deprecated public interface FilterableIssueDeprecated.since 7.6- Since:
- 5.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.StringcomponentKey()Deprecated.since 7.6 filtering issue should not depend on the keyjava.util.DatecreationDate()Deprecated.since 6.6 useless since creation date is computed on server sidejava.lang.Doublegap()Deprecated.java.lang.Integerline()Deprecated.since 7.2.java.lang.Stringmessage()Deprecated.java.lang.StringprojectKey()Deprecated.since 7.6 filtering issue should not depend on the keyRuleKeyruleKey()Deprecated.java.lang.Stringseverity()Deprecated.TextRangetextRange()Deprecated.
-
-
-
Method Detail
-
componentKey
@Deprecated java.lang.String componentKey()
Deprecated.since 7.6 filtering issue should not depend on the key
-
ruleKey
RuleKey ruleKey()
Deprecated.
-
severity
java.lang.String severity()
Deprecated.
-
message
java.lang.String message()
Deprecated.
-
line
@Deprecated @CheckForNull java.lang.Integer line()
Deprecated.since 7.2. UsetextRange()instead.
-
textRange
@CheckForNull TextRange textRange()
Deprecated.- Since:
- 7.2
-
gap
@CheckForNull java.lang.Double gap()
Deprecated.- Since:
- 5.5
-
creationDate
@Deprecated java.util.Date creationDate()
Deprecated.since 6.6 useless since creation date is computed on server side
-
projectKey
@Deprecated java.lang.String projectKey()
Deprecated.since 7.6 filtering issue should not depend on the key
-
-