org.jenkinsci.plugins.android_lint.parser
Class Location
java.lang.Object
org.jenkinsci.plugins.android_lint.parser.Location
- All Implemented Interfaces:
- Serializable
public class Location
- extends Object
- implements Serializable
Represents a location of a Lint issue.
- See Also:
- Serialized Form
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Location
public Location()
getFile
public String getFile()
- Returns:
- The file name.
setFile
public void setFile(String filename)
- Parameters:
filename - The filename to set.
getLine
public int getLine()
- Returns:
- The line number where the issue occurs.
setLine
public void setLine(int lineNumber)
- Parameters:
lineNumber - Line where the issue occurs.
getColumn
public int getColumn()
- Returns:
- The column on the line where the issue occurs.
setColumn
public void setColumn(int column)
- Parameters:
column - Column on the line where the issue occurs.
Copyright © 2004-2013. All Rights Reserved.