Example usage for org.apache.wicket Application getComponentInitializationListeners

List of usage examples for org.apache.wicket Application getComponentInitializationListeners

Introduction

In this page you can find the example usage for org.apache.wicket Application getComponentInitializationListeners.

Prototype

public final ComponentInitializationListenerCollection getComponentInitializationListeners() 

Source Link

Usage

From source file:com.github.wicket.autowire.AutoWire.java

License:Apache License

public static void install(final Application application) {
    final AutoWire instance = new AutoWire();
    application.getComponentInitializationListeners().add(instance);
    application.getComponentInstantiationListeners().add(instance);
}