Interface ParserConfigurator
-
public interface ParserConfigurator
Interface which allows to configure a particularParser
before it is being used.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
configure(java.lang.String parserId, java.nio.file.Path filePath, org.apache.maven.doxia.parser.Parser parser)
Configures the given parser which is afterwards used to parse the source file with the given path.
-
-
-
Method Detail
-
configure
boolean configure(java.lang.String parserId, java.nio.file.Path filePath, org.apache.maven.doxia.parser.Parser parser)
Configures the given parser which is afterwards used to parse the source file with the given path.- Parameters:
parserId
- the parser idfilePath
- the absolute path of the file to parseparser
- the parser to configure- Returns:
true
if the parser has been configured, otherwisefalse
-
-