Package org.sonar.plugins.php.api.tests
Class TestIssue
- java.lang.Object
-
- org.sonar.plugins.php.api.tests.TestIssue
-
public class TestIssue extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TestIssue.Location
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description TestIssue
columns(int startColumn, int endColumn)
static TestIssue
create(String message, int lineNumber)
Double
effortToFix()
TestIssue
effortToFix(double effortToFix)
Integer
endColumn()
TestIssue
endColumn(int endColumn)
Integer
endLine()
TestIssue
endLine(int endLine)
int
line()
String
message()
TestIssue
message(String message)
TestIssue
secondary(Integer... lines)
TestIssue
secondary(List<Integer> secondaryLines)
List<TestIssue.Location>
secondaryLocations()
Integer
startColumn()
TestIssue
startColumn(int startColumn)
-
-
-
Method Detail
-
columns
public TestIssue columns(int startColumn, int endColumn)
-
startColumn
public TestIssue startColumn(int startColumn)
-
endColumn
public TestIssue endColumn(int endColumn)
-
effortToFix
public TestIssue effortToFix(double effortToFix)
-
endLine
public TestIssue endLine(int endLine)
-
line
public int line()
-
startColumn
public Integer startColumn()
-
endLine
public Integer endLine()
-
endColumn
public Integer endColumn()
-
message
public String message()
-
effortToFix
public Double effortToFix()
-
secondaryLocations
public List<TestIssue.Location> secondaryLocations()
-
-