Uses of Class
org.apache.wicket.behavior.AttributeAppender
-
Packages that use AttributeAppender Package Description org.apache.wicket The core Wicket package.org.apache.wicket.behavior -
-
Uses of AttributeAppender in org.apache.wicket
Subclasses of AttributeAppender in org.apache.wicket Modifier and Type Class Description class
ClassAttributeModifier
An AttributeModifier specialized in managing the CSS class attributeclass
StyleAttributeModifier
An AttributeModifier specialized in managing the CSS style attributeMethods in org.apache.wicket that return AttributeAppender Modifier and Type Method Description static AttributeAppender
AttributeModifier. append(String attributeName, Serializable value)
Creates a attribute modifier that appends the current value with the givenvalue
using a default space character (' ') separator.static AttributeAppender
AttributeModifier. append(String attributeName, IModel<?> value)
Creates a attribute modifier that appends the current value with the givenvalue
using a default space character (' ') separator.static AttributeAppender
AttributeModifier. prepend(String attributeName, Serializable value)
Creates a attribute modifier that prepends the current value with the givenvalue
using a default space character (' ') separator.static AttributeAppender
AttributeModifier. prepend(String attributeName, IModel<?> value)
Creates a attribute modifier that prepends the current value with the givenvalue
using a default space character (' ') separator. -
Uses of AttributeAppender in org.apache.wicket.behavior
Methods in org.apache.wicket.behavior that return AttributeAppender Modifier and Type Method Description AttributeAppender
AttributeAppender. setSeparator(String separator)
Sets the separator used by attribute appenders and prependers.
-