Package org.attoparser
Class ParsingCommentMarkupUtil
- java.lang.Object
-
- org.attoparser.ParsingCommentMarkupUtil
-
public final class ParsingCommentMarkupUtil extends java.lang.Object
Class containing utility methods for parsing comments.- Since:
- 2.0.0
-
-
Constructor Summary
Constructors Modifier Constructor Description private
ParsingCommentMarkupUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description (package private) static boolean
isCommentEnd(char[] buffer, int offset, int maxi)
(package private) static boolean
isCommentStart(char[] buffer, int offset, int maxi)
static void
parseComment(char[] buffer, int offset, int len, int line, int col, ICommentHandler handler)
-
-
-
Method Detail
-
parseComment
public static void parseComment(char[] buffer, int offset, int len, int line, int col, ICommentHandler handler) throws ParseException
- Throws:
ParseException
-
isCommentStart
static boolean isCommentStart(char[] buffer, int offset, int maxi)
-
isCommentEnd
static boolean isCommentEnd(char[] buffer, int offset, int maxi)
-
-