Package com.github.javaparser
Class ParserConfiguration.UnicodeEscapeProcessor
- java.lang.Object
-
- com.github.javaparser.Processor
-
- com.github.javaparser.ParserConfiguration.UnicodeEscapeProcessor
-
- Enclosing class:
- ParserConfiguration
private class ParserConfiguration.UnicodeEscapeProcessor extends Processor
-
-
Field Summary
Fields Modifier and Type Field Description private UnicodeEscapeProcessingProvider
_unicodeDecoder
-
Constructor Summary
Constructors Modifier Constructor Description private
UnicodeEscapeProcessor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
postProcess(ParseResult<? extends Node> result, ParserConfiguration configuration)
Makes the parser do a post-parsing step before the result is returned to the user.Provider
preProcess(Provider innerProvider)
Adds a pre-parsing step, which has access to the sourcecode through the innerProvider.
-
-
-
Field Detail
-
_unicodeDecoder
private UnicodeEscapeProcessingProvider _unicodeDecoder
-
-
Method Detail
-
preProcess
public Provider preProcess(Provider innerProvider)
Description copied from class:Processor
Adds a pre-parsing step, which has access to the sourcecode through the innerProvider.- Overrides:
preProcess
in classProcessor
-
postProcess
public void postProcess(ParseResult<? extends Node> result, ParserConfiguration configuration)
Description copied from class:Processor
Makes the parser do a post-parsing step before the result is returned to the user.- Overrides:
postProcess
in classProcessor
-
-