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

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

Introduction

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

The text is from its open source code.

Constructor

XmlTag()
Construct.

Method

CharSequencegetAttribute(final String key)
Get a string attribute.
IValueMapgetAttributes()
Gets a hashmap of this tag's attributes.
intgetLength()
Gets the length of the tag in characters.
StringgetName()
Gets the name of the tag, for example the tag <b>'s name would be 'b'.
intgetPos()
Gets the location of the tag in the input string.
booleanisClose()
Gets whether this is a close tag.
booleanisOpen()
Gets whether this is an open tag.
booleanisOpenClose()
Gets whether this tag is an open/ close tag.
Objectput(final String key, final boolean value)
Puts a boolean attribute.
Objectput(final String key, final int value)
Puts an int attribute.
Objectput(final String key, final CharSequence value)
Puts a string attribute.
Objectput(final String key, final StringValue value)
Puts a StringValue attribute.
voidsetName(final String name)
Sets the tag name.
voidsetNamespace(final String namespace)
Sets the tag namespace.
voidsetType(final TagType type)
Sets type of this tag if it is not immutable.
CharSequencetoCharSequence()
StringtoString()
Converts this object to a string representation.
CharSequencetoXmlString(final String attributeToBeIgnored)
Assuming some attributes have been changed, toXmlString() rebuilds the String on based on the tags informations.