Example usage for org.apache.wicket.behavior Behavior bind

List of usage examples for org.apache.wicket.behavior Behavior bind

Introduction

In this page you can find the example usage for org.apache.wicket.behavior Behavior bind.

Prototype

public void bind(Component component) 

Source Link

Document

Bind this handler to the given component.

Usage

From source file:org.wicketstuff.minis.behavior.CompositeBehavior.java

License:Apache License

/**
 * {@inheritDoc}/*from w ww.ja v a2s  . com*/
 */
@Override
public void bind(final Component arg0) {
    for (final Behavior behavior : behaviors_)
        behavior.bind(arg0);
}