Class ResultAdditionalAttributes
- java.lang.Object
-
- com.parasoft.findings.jenkins.internal.ResultAdditionalAttributes
-
public class ResultAdditionalAttributes extends Object
Provides additional attributes associated with violation, which are not attached directly to violation itself.
-
-
Constructor Summary
Constructors Constructor Description ResultAdditionalAttributes(com.parasoft.findings.utils.results.violations.IRuleViolation violation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAuthor()
String
getRevision()
String
getRuleCategory()
String
getRuleTitle()
int
getSeverity()
boolean
isSuppressed()
-
-
-
Method Detail
-
isSuppressed
public boolean isSuppressed()
- Returns:
- true if violation is suppressed and should not be visible
-
getSeverity
public int getSeverity()
- Returns:
- violation severity
-
getRuleTitle
public String getRuleTitle()
- Returns:
- title of violated rule
-
getRuleCategory
public String getRuleCategory()
- Returns:
- category of violated rule
-
getAuthor
public String getAuthor()
- Returns:
- assigned author
-
getRevision
public String getRevision()
- Returns:
- file revision for which this violation has been reported
-
-