Java org.apache.wicket.behavior AttributeAppender fields, constructors, methods, implement or subclass

Example usage for Java org.apache.wicket.behavior AttributeAppender fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.wicket.behavior AttributeAppender.

The text is from its open source code.

Subclass

org.apache.wicket.behavior.AttributeAppender has subclasses.
Click this link to see all its subclasses.

Constructor

AttributeAppender(String attribute, Serializable value, String separator)
Creates an AttributeModifier that appends the value to the current value of the attribute, and will add the attribute when it is not there already.
AttributeAppender(String attribute, IModel appendModel, String separator)
Creates an AttributeModifier that appends the appendModel's value to the current value of the attribute, and will add the attribute when it is not there already.
AttributeAppender(String attribute, IModel replaceModel)
Creates an attribute modifier that concatenates the replaceModel to the attribute's current value, optionally separated by the #getSeparator() separator .
AttributeAppender(String attribute, Serializable value)
Creates an attribute modifier that appends the value to the attribute's current value, optionally separated by the #getSeparator() separator .