@Component(role=Doxia.class) public class DefaultDoxia extends org.codehaus.plexus.logging.AbstractLogEnabled implements Doxia
| Modifier and Type | Field and Description |
|---|---|
private ParserManager |
parserManager |
| Constructor and Description |
|---|
DefaultDoxia() |
| Modifier and Type | Method and Description |
|---|---|
Parser |
getParser(java.lang.String parserId)
Return a parser for the given
parserId. |
void |
parse(java.io.Reader source,
java.lang.String parserId,
Sink sink)
Parses the given source model using a parser with given id,
and emits Doxia events into the given sink.
|
@Requirement private ParserManager parserManager
public void parse(java.io.Reader source,
java.lang.String parserId,
Sink sink)
throws ParserNotFoundException,
ParseException
parse in interface Doxiasource - not null reader that provides the source document.
You could use newReader methods from ReaderFactory.parserId - Identifier for the parser to use.sink - A sink that consumes the Doxia events.ParserNotFoundException - if no parser could be found for the given id.ParseException - if the model could not be parsed.public Parser getParser(java.lang.String parserId) throws ParserNotFoundException
parserId.getParser in interface DoxiaparserId - Identifier for the parser to use.ParserNotFoundException - if no parser could be found for the given id.