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

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

Introduction

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

The text is from its open source code.

Field

intRENDER_RAW
Render the tag as RawMarkup even if no Component can be found

Constructor

ComponentTag(final String name, final XmlTag.TagType type)
Automatically create a XmlTag, assign the name and the type, and construct a ComponentTag based on this XmlTag.
ComponentTag(final XmlTag tag)
Construct.
ComponentTag(final ComponentTag tag)
Constructor

Method

voidaddBehavior(final Behavior behavior)
Adds a behavior to this component tag.
voidappend(String key, CharSequence value, String separator)
Appends specified value to the attribute
StringgetAttribute(String name)
A convenient method.
IValueMapgetAttributes()
StringgetId()
Get the tag's component id
StringgetName()
StringgetNamespace()
TagTypegetType()
booleanhasNoCloseTag()
booleanisAutoComponentTag()
booleanisClose()
booleanisOpen()
booleanisOpenClose()
voidmakeImmutable()
Makes this tag object immutable by making the attribute map unmodifiable.
ComponentTagmutable()
Gets this tag if it is already mutable, or a mutable copy of this tag if it is immutable.
voidput(final String key, final boolean value)
voidput(final String key, final int value)
voidput(String key, CharSequence value)
voidput(String key, StringValue value)
voidputAll(final Map map)
voidremove(String key)
booleanrequiresCloseTag()
Gets whether this tag does not require a closing tag.
voidsetAutoComponentTag(boolean auto)
voidsetHasNoCloseTag(boolean hasNoCloseTag)
True if the HTML tag (e.g.
voidsetId(final String id)
Set the component's id.
voidsetModified(final boolean modified)
Manually mark the ComponentTag being modified.
voidsetName(String name)
voidsetOpenTag(final ComponentTag tag)
Assuming this is a close tag, assign it's corresponding open tag.
voidsetType(final TagType type)
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
CharSequencesyntheticCloseTagString()
StringtoString()
Converts this object to a string representation.
StringtoUserDebugString()
Converts this object to a string representation including useful information for debugging