public interface CommentListener
Modifier and Type | Method and Description |
---|---|
void |
reportBlockComment(String aType,
int aStartLineNo,
int aStartColNo,
int aEndLineNo,
int aEndColNo)
Report the location of a block comment that can span multiple lines.
|
void |
reportSingleLineComment(String aType,
int aStartLineNo,
int aStartColNo)
Report the location of a single line comment that extends from the
given point to the end of the line.
|
void reportSingleLineComment(String aType, int aStartLineNo, int aStartColNo)
aType
- an identifier for what type of comment it is.aStartLineNo
- the starting line numberaStartColNo
- the starting column numbervoid reportBlockComment(String aType, int aStartLineNo, int aStartColNo, int aEndLineNo, int aEndColNo)
aType
- an identifier for what type of comment it is.aStartLineNo
- the starting line numberaStartColNo
- the starting column numberaEndLineNo
- the ending line numberaEndColNo
- the ending column numberCopyright © 2001-2014. All Rights Reserved.