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

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

Introduction

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

Prototype

public boolean isTemporary(Component component) 

Source Link

Document

Specifies whether or not this behavior is temporary.

Usage

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

License:Apache License

/**
 * {@inheritDoc}/*  www  .  ja va 2  s  .co  m*/
 */
@Override
public boolean isTemporary(final Component component) {
    boolean back = true;
    for (final Behavior behavior : behaviors_)
        back = back && behavior.isTemporary(component);
    return back;
}