org.xwiki.rendering.internal.renderer.plain.PlainTextBlockRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xwiki-rendering-syntax-plain Show documentation
Show all versions of xwiki-rendering-syntax-plain Show documentation
XWiki Rendering - Syntax - Plain
/*
* 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.plain;
import javax.inject.Inject;
import javax.inject.Named;
import javax.inject.Singleton;
import org.xwiki.component.annotation.Component;
import org.xwiki.rendering.internal.renderer.AbstractBlockRenderer;
import org.xwiki.rendering.renderer.PrintRendererFactory;
/**
* Print only plain text information. For example it remove anything which need a specific syntax a simple plain text
* editor can't support like the style, link, image, etc. This renderer is mainly used to generate a simple as possible
* label like in a TOC.
*
* @version $Id: 009a9bddeeae5d17555c9a476fac173a450c1de0 $
* @since 2.0M3
*/
@Component
@Named("plain/1.0")
@Singleton
public class PlainTextBlockRenderer extends AbstractBlockRenderer
{
/**
* Used to create new plain/1.0 {@link org.xwiki.rendering.renderer.PrintRenderer}s.
*/
@Inject
@Named("plain/1.0")
private PrintRendererFactory plainTextRendererFactory;
@Override
protected PrintRendererFactory getPrintRendererFactory()
{
return this.plainTextRendererFactory;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy