Uses of Class
com.github.javaparser.ParserConfiguration
-
Packages that use ParserConfiguration Package Description com.github.javaparser com.github.javaparser.utils -
-
Uses of ParserConfiguration in com.github.javaparser
Methods in com.github.javaparser that return ParserConfiguration Modifier and Type Method Description ParserConfiguration
JavaParser. getParserConfiguration()
Get the non-static configuration for this parser.static ParserConfiguration
JavaParser. getStaticConfiguration()
Get the configuration for the static parse...ParserConfiguration
ParserConfiguration. setAttributeComments(boolean attributeComments)
Whether to run CommentsInserter, which will put the comments that were found in the source code into the comment and javadoc fields of the nodes it thinks they refer to.ParserConfiguration
ParserConfiguration. setDoNotAssignCommentsPrecedingEmptyLines(boolean doNotAssignCommentsPrecedingEmptyLines)
ParserConfiguration
ParserConfiguration. setDoNotConsiderAnnotationsAsNodeStartForCodeAttribution(boolean doNotConsiderAnnotationsAsNodeStartForCodeAttribution)
ParserConfiguration
ParserConfiguration. setStoreTokens(boolean storeTokens)
ParserConfiguration
ParserConfiguration. setTabSize(int tabSize)
When a TAB character is encountered during parsing, the column position will be increased by this value.ParserConfiguration
ParserConfiguration. setValidator(Validator validator)
The validator to run directly after parsing.Methods in com.github.javaparser with parameters of type ParserConfiguration Modifier and Type Method Description static void
JavaParser. setStaticConfiguration(ParserConfiguration staticConfiguration)
Set the configuration for the static parse...Constructors in com.github.javaparser with parameters of type ParserConfiguration Constructor Description JavaParser(ParserConfiguration configuration)
Instantiate the parser. -
Uses of ParserConfiguration in com.github.javaparser.utils
Constructors in com.github.javaparser.utils with parameters of type ParserConfiguration Constructor Description SourceZip(Path zipPath, ParserConfiguration configuration)
Create a new ZIP parser.
-