- All Known Implementing Classes:
StatementDetector
Visitor for tokens.
Used by SqlParser
to notify the visitors of tokens.
- Since:
- 5
- Author:
- Mark Rotteveel
-
Method Summary
Modifier and TypeMethodDescriptionvoid
complete
(VisitorRegistrar visitorRegistrar) Signals that the last token was produced and the statement text was fully parsed.void
visitToken
(Token token, VisitorRegistrar visitorRegistrar) Notifies the visitor of a token.
-
Method Details
-
visitToken
Notifies the visitor of a token.- Parameters:
token
- TokenvisitorRegistrar
- Visitor registrar (can be used to remove itself, or add other visitors)
-
complete
Signals that the last token was produced and the statement text was fully parsed.- Parameters:
visitorRegistrar
- Visitor registrar (can be used to remove itself, or add other visitors)
-