Example usage for org.apache.wicket.guice GuiceComponentInjector GuiceComponentInjector

List of usage examples for org.apache.wicket.guice GuiceComponentInjector GuiceComponentInjector

Introduction

In this page you can find the example usage for org.apache.wicket.guice GuiceComponentInjector GuiceComponentInjector.

Prototype

public GuiceComponentInjector(final Application app, final Injector injector, final boolean wrapInProxies) 

Source Link

Document

Creates a new Wicket GuiceComponentInjector instance, using the provided Guice Injector instance.

Usage

From source file:org.apache.isis.viewer.wicket.viewer.IsisWicketApplication.java

License:Apache License

protected void initWicketComponentInjection(final Injector injector) {
    // if serializable, then brings in dependency on cglib, and in turn asm.
    // This would block us from migrating to DN 4.0.x
    getComponentInstantiationListeners().add(new GuiceComponentInjector(this, injector, false));
}