Example usage for org.apache.wicket RequestListenerInterface invoke

List of usage examples for org.apache.wicket RequestListenerInterface invoke

Introduction

In this page you can find the example usage for org.apache.wicket RequestListenerInterface invoke.

Prototype

public final void invoke(final IRequestableComponent rcomponent) 

Source Link

Document

Invokes a given interface on a component.

Usage

From source file:org.brixcms.web.nodepage.BrixNodePageListenerRequestHandler.java

License:Apache License

protected void respondWithInitialRedirectHandled(RequestCycle requestCycle) {
    int separator = iface.lastIndexOf(':');
    if (separator != -1) {
        Component component = getTarget();
        RequestListenerInterface listenerInterface = getRequestListenerInterface();
        listenerInterface.invoke(/*getPage(),*/ component);
    }/*  w  ww  . j  a  v a2s. com*/

    super.respondWithInitialRedirectHandled(requestCycle);
}