org.codehaus.groovy.antlr
Class SourceBuffer
A simple buffer that provides line/col access to chunks of source code
held within itself.
- author:
- Jeremy Rayner
- version:
- $Revision: 7922 $
Method Summary |
String |
getSnippet(LineColumn start, LineColumn end)
Obtains a snippet of the source code within the bounds specified
|
void |
write(int c)
Writes the specified character into the buffer
|
SourceBuffer
public SourceBuffer()
-
getSnippet
public String getSnippet(LineColumn start, LineColumn end)
- Obtains a snippet of the source code within the bounds specified
- param:
- start (inclusive line/ inclusive column)
- param:
- end (inclusive line / exclusive column)
- return:
- specified snippet of source code as a String, or null if no source available
write
public void write(int c)
- Writes the specified character into the buffer
- param:
- c