| java.lang.Object org.acm.seguin.completer.info.SourceLocation
SourceLocation | final public class SourceLocation implements java.io.Serializable,Comparable(Code) | | Encapsulates a location (file path, line, and column) in Java source code.
The path may be an absolute path (such as
/home/me/projects/test/Test.java ), or it may be a relative
path based on the package which the file belongs to
(such as java/lang/Object.java ).
author: Jason Ginchereau |
endLine | public int endLine(Code) | | |
SourceLocation | public SourceLocation(String path, int line, int col)(Code) | | |
SourceLocation | public SourceLocation(String path, int line, int col, int endLine, int endCol)(Code) | | |
getColumn | public int getColumn()(Code) | | |
getEndColumn | public int getEndColumn()(Code) | | |
getEndLine | public int getEndLine()(Code) | | |
getLine | public int getLine()(Code) | | |
hashCode | public int hashCode()(Code) | | |
|
|