org.jenkinsci.plugins.android_lint.parser
Class Location

java.lang.Object
  extended by org.jenkinsci.plugins.android_lint.parser.Location

public class Location
extends Object

Represents a location of a Lint issue.


Constructor Summary
Location()
           
 
Method Summary
 int getColumn()
           
 String getFile()
           
 int getLine()
           
 void setColumn(int column)
           
 void setFile(String filename)
           
 void setLine(int lineNumber)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Location

public Location()
Method Detail

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-2012. All Rights Reserved.