All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xwiki.rendering.internal.renderer.wikimodel.WikiModelPrinterAdapter Maven / Gradle / Ivy

There is a newer version: 16.10.0-rc-1
Show newest version
/*
 * See the NOTICE file distributed with this work for additional
 * information regarding copyright ownership.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
package org.xwiki.rendering.internal.renderer.wikimodel;

import org.xwiki.rendering.renderer.printer.WikiPrinter;
import org.xwiki.rendering.wikimodel.IWikiPrinter;

/**
 * Bridge so that WikiModel listeners can be used and so that they output their results to a XWiki {@link WikiPrinter}
 * instance.
 *
 * @version $Id: 1d1efb136c67151fd476ba806531da36d8469d4b $
 * @since 1.5M1
 */
public class WikiModelPrinterAdapter implements IWikiPrinter
{
    private WikiPrinter printer;

    public WikiModelPrinterAdapter(WikiPrinter printer)
    {
        this.printer = printer;
    }

    @Override
    public void print(String text)
    {
        this.printer.print(text);
    }

    @Override
    public void println(String text)
    {
        this.printer.println(text);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy