public class IncludeHint
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
private int |
endCol
column number on the output for the last character produced + 1
|
private int |
endLine
line number on the output for the last character produced
|
private java.lang.String |
filename
Include file name
|
private int |
startCol
column number on the output for the first character produced
|
private int |
startLine
line number on the output for the first character produced
|
| Constructor and Description |
|---|
IncludeHint(java.lang.String filename)
Default constructor.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getEndColumn()
Gets ending column number.
|
int |
getEndLine()
Gets ending line number.
|
java.lang.String |
getFilename()
Gets include file name.
|
int |
getStartColumn()
Gets starting column number.
|
int |
getStartLine()
Gets starting line number.
|
void |
setEndColumn(int column)
Sets ending column number.
|
void |
setEndLine(int line)
Sets ending line number.
|
void |
setStartColumn(int column)
Sets starting column number.
|
void |
setStartLine(int line)
Sets starting line number.
|
java.lang.String |
toString()
Render this instance as text.
|
private java.lang.String filename
private int startLine
private int startCol
private int endLine
private int endCol
public java.lang.String getFilename()
public void setStartLine(int line)
line - starting line numberpublic int getStartLine()
public void setStartColumn(int column)
column - starting column numberpublic int getStartColumn()
public void setEndLine(int line)
line - endingline numberpublic int getEndLine()
public void setEndColumn(int column)
column - ending column numberpublic int getEndColumn()
public java.lang.String toString()
toString in class java.lang.Object