org.jenkinsci.plugins.cflint.parser
Class Location

java.lang.Object
  extended by org.jenkinsci.plugins.cflint.parser.Location
All Implemented Interfaces:
Serializable

public class Location
extends Object
implements Serializable

Represents a location of a Lint issue.

See Also:
Serialized Form

Constructor Summary
Location()
           
 
Method Summary
 int getColumn()
           
 String getExpression()
           
 String getFile()
           
 int getLine()
           
 String getMessage()
           
 void setColumn(int column)
           
 void setExpression(String expression)
           
 void setFile(String filename)
           
 void setLine(int lineNumber)
           
 void setMessage(String message)
           
 
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.

getMessage

public String getMessage()

setMessage

public void setMessage(String message)

getExpression

public String getExpression()

setExpression

public void setExpression(String expression)


Copyright © 2004-2014. All Rights Reserved.