Package org.apache.maven.doxia.util

Examples of org.apache.maven.doxia.util.LineBreaker


    private Sink xhtmlSink;

    public AndromdadocSink(Writer out)
    {
        this.out = new LineBreaker(out);
    }
View Full Code Here


     * @param fragmentDocument If this receives events that that are only part of a document.
     * Typically, headers are omitted if this is true.
     */
    protected LatexSink( Writer out, String sinkCommands, String preamble, boolean fragmentDocument )
    {
        this.out = new LineBreaker( out );

        if ( sinkCommands == null )
        {
            sinkCommands = defaultSinkCommands();
        }
View Full Code Here

TOP

Related Classes of org.apache.maven.doxia.util.LineBreaker

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.