org.codehaus.jam
Interface JSourcePosition

All Known Subinterfaces:
MSourcePosition

public interface JSourcePosition

Describes a specific point in a source file.

Author:
Patrick Calahan <email: pcal-at-bea-dot-com>

Method Summary
 int getColumn()
          Returns the text column number for this source position, or -1 if it is not known.
 int getLine()
          Returns the text line number for this source position, or -1 if it is not known.
 java.net.URI getSourceURI()
          Returns the URI of the source file, or null if it is not known.
 

Method Detail

getColumn

int getColumn()
Returns the text column number for this source position, or -1 if it is not known.


getLine

int getLine()
Returns the text line number for this source position, or -1 if it is not known.


getSourceURI

java.net.URI getSourceURI()
Returns the URI of the source file, or null if it is not known.