-
Classes Class Description org.apache.maven.doxia.sink.impl.PipelineSink Use theSinkWrapper
approach which doesn't require the use of dynamic proxies.org.apache.maven.doxia.sink.impl.RandomAccessSink UseBufferingSinkProxyFactory
instead which buffers on the (higher) Sink API level which usually is less memory intense than buffering the output stream which is done by this class. Also it doesn't require dynamically creating new sinks leveraging aSinkFactory
.
-
Methods Method Description org.apache.maven.doxia.parser.AbstractParser.getBasedir() this does not work in multi-module builds, see DOXIA-373org.apache.maven.doxia.parser.Xhtml5BaseParser.consecutiveSections(int, Sink, SinkEventAttributeSet)
-
Constructors Constructor Description org.apache.maven.doxia.index.IndexingSink(IndexEntry) legacy constructor, useIndexingSink(Sink)
withSinkAdapter
as argument and callIndexingSink.getRootEntry()
to retrieve the index tree afterwards.