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

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

Introduction

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

Prototype

public boolean getStatelessHint(Component component) 

Source Link

Document

This method returns false if the behavior generates a callback url (for example ajax behaviors)

Usage

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

License:Apache License

/**
 * {@inheritDoc}//from w  w  w. j  a v a  2s. c  o  m
 */
@Override
public boolean getStatelessHint(final Component arg0) {
    boolean back = true;
    for (final Behavior behavior : behaviors_)
        back = back && behavior.getStatelessHint(arg0);
    return back;
}