Interface MSourcePosition
-
- All Superinterfaces:
JSourcePosition
- All Known Implementing Classes:
SourcePositionImpl
public interface MSourcePosition extends JSourcePosition
Mutable version of JSourcePosition.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.apache.xmlbeans.impl.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.
-
-