Package com.fizzed.rocker.model
Class SourceRef
- java.lang.Object
-
- com.fizzed.rocker.model.SourceRef
-
public class SourceRef extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private SourcePositionbeginprivate intcharLengthprivate java.lang.Stringtext
-
Constructor Summary
Constructors Constructor Description SourceRef(SourcePosition begin, int charLength, java.lang.String text)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SourceRefcombineAdjacent(SourceRef other)SourcePositiongetBegin()intgetCharLength()java.lang.StringgetConsoleFriendlyText()java.lang.StringgetText()java.lang.StringtoString()
-
-
-
Field Detail
-
begin
private final SourcePosition begin
-
charLength
private final int charLength
-
text
private final java.lang.String text
-
-
Constructor Detail
-
SourceRef
public SourceRef(SourcePosition begin, int charLength, java.lang.String text)
-
-
Method Detail
-
combineAdjacent
public SourceRef combineAdjacent(SourceRef other) throws TokenException
- Throws:
TokenException
-
getBegin
public SourcePosition getBegin()
-
getCharLength
public int getCharLength()
-
getText
public java.lang.String getText()
-
getConsoleFriendlyText
public java.lang.String getConsoleFriendlyText()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-