Example usage for org.apache.wicket.behavior Behavior subclass-usage

List of usage examples for org.apache.wicket.behavior Behavior subclass-usage

Introduction

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

Usage

From source file org.jaulp.wicket.behaviors.AddJsResourceReferenceBehavior.java

/**
 * The Class AddJsResourceReferenceBehavior adds a javascript file to given WebPage class as a
 * JavaScriptHeaderItem.
 */
public class AddJsResourceReferenceBehavior extends Behavior {

From source file org.jaulp.wicket.behaviors.FaviconBehavior.java

/**
 * The Class FaviconBehavior adds a StringHeaderItem for the Favicon.
 */
public class FaviconBehavior extends Behavior {

    /** The Constant serialVersionUID. */

From source file org.jaulp.wicket.behaviors.FocusRequestBehavior.java

/**
 * The Class FocusRequestBehavior set the focus on a component when the page is load.
 */
public class FocusRequestBehavior extends Behavior {

    /**

From source file org.jaulp.wicket.behaviors.JqueryStatementsBehavior.java

public class JqueryStatementsBehavior extends Behavior {
    /** The Constant logger. */
    protected static final Logger LOGGER = Logger.getLogger(JqueryStatementsBehavior.class.getName());

    /** The Constant serialVersionUID. */
    private static final long serialVersionUID = 1L;

From source file org.jaulp.wicket.behaviors.LinkBehavior.java

/**
 * The Class LinkBehavior adds the ability to a component to act as a link, i.e. like a tablerow
 * tag( <tr> ) or a list item (<li>) the ability to act as a link. For instance in
 * repeaters like the DataView.
 */
public class LinkBehavior extends Behavior {

From source file org.jaulp.wicket.behaviors.MailtoBehavior.java

/**
 * The Class MailtoBehavior adds the email address to the a-tag.
 *
 * @param <T>
 *            the generic type
 * @author Asterios Raptis

From source file org.jaulp.wicket.behaviors.popupoverlay.PopupoverlayBehavior.java

/**
 * The Class PopupoverlayBehavior.
 */
public class PopupoverlayBehavior extends Behavior {

    /**

From source file org.jaulp.wicket.behaviors.RequiredBehavior.java

/**
 * The Class RequiredBehavior adds a span tag at the end of a component that markes it as required.
 */
public class RequiredBehavior extends Behavior {

    /**

From source file org.jaulp.wicket.behaviors.WrapAllChildrenBehavior.java

public class WrapAllChildrenBehavior extends Behavior {

    public WrapAllChildrenBehavior(CharSequence statementLabel, CharSequence statementArgs) {
        super();
        Args.notNull(statementLabel, "statementLabel");
        Args.notNull(statementArgs, "statementArgs");

From source file org.odlabs.wiquery.core.javascript.JsQuery.java

/**
 * $Id: JsQuery.java 1721M 2012-01-17 17:43:37Z (local) $
 * <p>
 * {@link JsQuery} is the main entry point of WickeXt's JavaScript integration. This class
 * is used to link JavaScript to a component and to render it.
 * </p>