Package de.xima.fc.workflow.parser.infix
Interface ISourcePosition
-
- All Superinterfaces:
Serializable
public interface ISourcePosition extends Serializable
Describes the position of a source token used in an infix expression.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getEndColumn()
int
getEndLine()
int
getStartColumn()
int
getStartLine()
-
-
-
Method Detail
-
getEndColumn
int getEndColumn()
- Returns:
- 0-based index of the end column in the source code.
-
getEndLine
int getEndLine()
- Returns:
- 0-based index of the end line where the token appears.
-
getStartColumn
int getStartColumn()
- Returns:
- 0-based index of the start column in the source code.
-
getStartLine
int getStartLine()
- Returns:
- 0-based index of the start line where the token appears.
-
-