public class HtmlLexer extends BaseHtmlLexer
BaseHtmlLexer.TokenHandler, BaseHtmlLexer.XmlNameHandler
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
INLINE_STYLE_NAME |
BASE_STATE_MASK, BASE_STATE_SHIFT, caseInsensitive, ourDefaultStyleLanguage, scriptType, seenAttribute, seenContentType, seenScript, seenStyle, seenStylesheetType, seenTag, styleType
myDelegate
Modifier | Constructor and Description |
---|---|
|
HtmlLexer() |
protected |
HtmlLexer(Lexer _baseLexer,
boolean _caseInsensitive) |
Modifier and Type | Method and Description |
---|---|
void |
advance()
Advances the lexer to the next token.
|
int |
getTokenEnd()
Returns the end offset of the current token.
|
int |
getTokenStart()
Returns the start offset of the current token.
|
IElementType |
getTokenType()
Returns the token at the current position of the lexer or
null if lexing is finished. |
protected boolean |
isHtmlTagState(int state) |
void |
start(java.lang.CharSequence buffer,
int startOffset,
int endOffset,
int initialState)
Prepare for lexing character data from
buffer passed. |
endOfTheEmbeddment, findScriptContentProvider, getBaseStateShift, getCurrentScriptElementType, getCurrentStylesheetElementType, getFirstChar, getScriptLanguage, getState, getStyleLanguage, hasSeenAttribute, hasSeenScript, hasSeenStyle, hasSeenTag, isValidAttributeValueTokenType, popScriptStyle, pushScriptStyle, registerHandler, skipToTheEndOfTheEmbeddment
getBufferEnd, getBufferSequence, getDelegate
getCurrentPosition, restore
getTokenSequence, getTokenText, start, start
public static final java.lang.String INLINE_STYLE_NAME
public HtmlLexer()
protected HtmlLexer(Lexer _baseLexer, boolean _caseInsensitive)
public void start(java.lang.CharSequence buffer, int startOffset, int endOffset, int initialState)
Lexer
buffer
passed. Internal lexer state is supposed to be initialState
. It is guaranteed
that the value of initialState is the same as returned by Lexer.getState()
method of this lexer at condition startOffset=getTokenStart()
.
This method is used to incrementally re-lex changed characters using lexing data acquired from this particular lexer sometime in the past.start
in class BaseHtmlLexer
buffer
- character data for lexing.startOffset
- offset to start lexing fromendOffset
- offset to stop lexing atinitialState
- the initial state of the lexer.public void advance()
Lexer
advance
in class BaseHtmlLexer
public IElementType getTokenType()
Lexer
null
if lexing is finished.getTokenType
in class DelegateLexer
protected boolean isHtmlTagState(int state)
isHtmlTagState
in class BaseHtmlLexer
public int getTokenStart()
Lexer
getTokenStart
in class DelegateLexer
public int getTokenEnd()
Lexer
getTokenEnd
in class DelegateLexer