com.lowagie.text.html
Class HtmlTagMap

java.lang.Object
  |
  +--java.util.AbstractMap
        |
        +--java.util.HashMap
              |
              +--com.lowagie.text.html.HtmlTagMap
All Implemented Interfaces:
Cloneable, Map, Serializable

public class HtmlTagMap
extends HashMap

The Tags-class maps several XHTML-tags to iText-objects.

See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.HashMap
 
Fields inherited from class java.util.AbstractMap
 
Constructor Summary
HtmlTagMap()
          Constructs an HtmlTagMap.
 
Method Summary
 boolean isBody(String tag)
          Checks if this is the root tag.
 boolean isHead(String tag)
          Checks if this is the head tag.
 boolean isHtml(String tag)
          Checks if this is the root tag.
 boolean isLink(String tag)
          Checks if this is the root tag.
 boolean isMeta(String tag)
          Checks if this is the meta tag.
 boolean isSpecialTag(String tag)
          Checks if this is a special tag.
 boolean isTitle(String tag)
          Checks if this is the root tag.
 
Methods inherited from class java.util.HashMap
clear, clone, containsKey, containsValue, entrySet, get, isEmpty, keySet, put, putAll, remove, size, values
 
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Map
equals, hashCode
 

Constructor Detail

HtmlTagMap

public HtmlTagMap()
Constructs an HtmlTagMap.

Method Detail

isHtml

public boolean isHtml(String tag)
Checks if this is the root tag.


isHead

public boolean isHead(String tag)
Checks if this is the head tag.


isMeta

public boolean isMeta(String tag)
Checks if this is the meta tag.


isLink

public boolean isLink(String tag)
Checks if this is the root tag.


isTitle

public boolean isTitle(String tag)
Checks if this is the root tag.


isBody

public boolean isBody(String tag)
Checks if this is the root tag.


isSpecialTag

public boolean isSpecialTag(String tag)
Checks if this is a special tag.