Example usage for org.apache.wicket.application IComponentOnBeforeRenderListener interface-usage

List of usage examples for org.apache.wicket.application IComponentOnBeforeRenderListener interface-usage

Introduction

In this page you can find the example usage for org.apache.wicket.application IComponentOnBeforeRenderListener interface-usage.

Usage

From source file com.github.javawithmarcus.wicket.cdi.ConversationExpiryChecker.java

/**
 * Checks for conversation expiration during page render and throws a
 * {@link ConversationExpiredException} when an expired conversation is detected.
 * <p/>
 * For example a link that calls {@link Conversation#end()} but does not redirect to a
 * non-conversation-dependent page will be caught by this listener.

From source file com.google.code.jqwicket.JQComponentOnBeforeRenderListener.java

/**
 * Wicket's {@link IComponentOnBeforeRenderListener} implementation responsible for adding header contributor with
 * appropriate jquery resources to the component before it will be rendered.
 *
 * @author mkalina
 */

From source file com.lyndir.lhunath.opal.wayward.state.ComponentStateListener.java

/**
 * <h2>{@link ComponentStateListener}<br> <sub>[in short] (TODO).</sub></h2>
 *
 * <p> <i>Mar 21, 2010</i> </p>
 *
 * @author lhunath

From source file com.lyndir.lhunath.snaplog.webapp.AuthenticationListener.java

/**
 * <h2>{@link AuthenticationListener}<br> <sub>[in short] (TODO).</sub></h2>
 *
 * <p> <i>Jan 2, 2010</i> </p>
 *
 * @author lhunath

From source file com.zenika.wicket.contrib.jsr303validators.JSR303ValidationListener.java

/**
 * <p>
 * Listener that adds a {@link BeanPropertyValidator} on
 * {@link org.apache.wicket.markup.html.form.AbstractTextComponent
 * AbstractTextFormComponents} right after the {@link Component#onAfterRender()}
 * has been invoked.

From source file org.artifactory.common.wicket.application.SetPathMarkupIdOnBeforeRenderListener.java

/**
 * @author Yoav Aharoni
 */
public class SetPathMarkupIdOnBeforeRenderListener implements IComponentOnBeforeRenderListener {
    @Override
    public void onBeforeRender(Component component) {

From source file org.brixcms.web.nodepage.PageParametersAwareEnabler.java

public class PageParametersAwareEnabler implements IComponentOnBeforeRenderListener {

    public void onBeforeRender(Component component) {
        if (component instanceof PageParametersAware) {
            PageParametersAware aware = (PageParametersAware) component;
            aware.initializeFromPageParameters(BrixPageParameters.getCurrent());