/**
  * @param document
  * @param myTags
  * @throws DocumentException
  * @throws IOException
  */
 public ITextHandler(IDocListener document, HtmlTagMap myTags) : this(document) {
     this.myTags = myTags;
 }
 /**
  * @param document
  * @param myTags
  * @param bf
  * @throws DocumentException
  * @throws IOException
  */
 public ITextHandler(IDocListener document, HtmlTagMap myTags, BaseFont bf) : this(document, myTags)
 {
     this.bf = bf;
 }
 /// <summary>
 /// @throws DocumentException
 /// @throws IOException
 /// </summary>
 /// <param name="document"></param>
 /// <param name="myTags"></param>
 /// <param name="bf"></param>
 public TextHandler(IDocListener document, HtmlTagMap myTags, BaseFont bf) : this(document, myTags)
 {
     DefaultFont = bf;
 }