org.xwiki.rendering.internal.renderer.event.EventRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xwiki-rendering-syntax-event Show documentation
Show all versions of xwiki-rendering-syntax-event Show documentation
XWiki Rendering - Syntax - Event
/*
* 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.event;
import javax.inject.Named;
import org.xwiki.component.annotation.Component;
import org.xwiki.component.annotation.InstantiationStrategy;
import org.xwiki.component.descriptor.ComponentInstantiationStrategy;
import org.xwiki.component.phase.Initializable;
import org.xwiki.rendering.listener.chaining.ListenerChain;
import org.xwiki.rendering.renderer.AbstractChainingPrintRenderer;
/**
* Print names of events. Useful for debugging and tracing in general. Note that this class is not located in the test
* source tree since it's currently used at runtime by the WYSIWYG editor for its runtime debug mode.
*
* @version $Id: ee701e6b5715921bcc53a95b41363ee67db9244f $
* @since 2.0M3
*/
@Component
@Named("event/1.0")
@InstantiationStrategy(ComponentInstantiationStrategy.PER_LOOKUP)
public class EventRenderer extends AbstractChainingPrintRenderer implements Initializable
{
@Override
public void initialize()
{
ListenerChain chain = new ListenerChain();
setListenerChain(chain);
// Construct the listener chain in the right order. Listeners early in the chain are called before listeners
// placed later in the chain.
chain.addListener(this);
chain.addListener(new EventsChainingRenderer(chain));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy