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

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

Introduction

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

The text is from its open source code.

Subclass

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

Field

MarkerValueVALUELESS_ATTRIBUTE_ADD
Marker value to have an attribute without a value added.
MarkerValueVALUELESS_ATTRIBUTE_REMOVE
Marker value to have an attribute without a value removed.

Constructor

AttributeModifier(final String attribute, final IModel replaceModel)
Create a new attribute modifier with the given attribute name and model to replace with.
AttributeModifier(String attribute, Serializable value)
Create a new attribute modifier with the given attribute name and model to replace with.

Method

AttributeAppenderappend(String attributeName, IModel value)
Creates a attribute modifier that appends the current value with the given value using a default space character (' ') separator.
AttributeAppenderappend(String attributeName, Serializable value)
Creates a attribute modifier that appends the current value with the given value using a default space character (' ') separator.
StringgetAttribute()
AttributeAppenderprepend(String attributeName, IModel value)
Creates a attribute modifier that prepends the current value with the given value using a default space character (' ') separator.
AttributeAppenderprepend(String attributeName, Serializable value)
Creates a attribute modifier that prepends the current value with the given value using a default space character (' ') separator.
AttributeModifierremove(String attributeName)
Creates a attribute modifier that removes an attribute with the specified name
AttributeModifierreplace(String attributeName, IModel value)
Creates a attribute modifier that replaces the current value with the given value.
AttributeModifierreplace(String attributeName, Serializable value)
Creates a attribute modifier that replaces the current value with the given value.
StringtoString()