org.codehaus.jam.mutable
Interface MSourcePosition

All Superinterfaces:
JSourcePosition

public interface MSourcePosition
extends JSourcePosition

Mutable version of JSourcePosition.

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

Method Summary
 void setColumn(int col)
          Sets the text column number for this source position.
 void setLine(int line)
          Sets the text line number for this source position.
 void setSourceURI(java.net.URI uri)
          Sets the URI of the source file.
 
Methods inherited from interface org.codehaus.jam.JSourcePosition
getColumn, getLine, getSourceURI
 

Method Detail

setColumn

void setColumn(int col)
Sets the text column number for this source position. Set to -1 if it is not known.


setLine

void setLine(int line)
Sets the text line number for this source position. Set to -1 if it is not known.


setSourceURI

void setSourceURI(java.net.URI uri)
Sets the URI of the source file. Set to null if it is not known.