Uses of Class
info.informatica.html.tag.HTMLTag

Packages that use HTMLTag
info.informatica.html HTMLDoc, HTMLFragment and HTMLTag It is an encapsulation of an HTML document, with a simple permissive parser which can handle even most of the bad, non-compliant HTML documents of the real world. 
info.informatica.html.tag   
 

Uses of HTMLTag in info.informatica.html
 

Methods in info.informatica.html that return HTMLTag
 HTMLTag IdTagFinder.getNextTag(int inipos)
          Find the next Tag of the requested ID in the document.
 HTMLTag NameTagFinder.getNextTag(int inipos)
          Get the next Tag of the requested name in the document, starting to search at a given place.
 HTMLTag TagFinder.getNextTag(int inipos)
          Gets the next Tag according to the requisites of this class.
 HTMLTag NameTagFinder.getNextTagBlock(int inipos)
          Gets the tag block formed by the next Tag found by this class, and the enclosed character data.
 HTMLTag TagFinder.getNextTagBlock(int inipos)
          Gets the tag block formed by the next Tag found by this class, and the enclosed character data.
 HTMLTag TagFinder.getTag()
          Find the first Tag according to the requisites of this class.
 HTMLTag HTMLDoc.getTag(info.informatica.doc.FragmentPosition pos)
          Gets a tag by its position in the document.
 HTMLTag HTMLFragment.getTag(info.informatica.doc.FragmentPosition pos)
          Gets a tag by its position in the document.
 HTMLTag TagFinder.getTagAt(info.informatica.doc.FragmentPosition pos)
           
 HTMLTag TagFinder.getTagBlock()
          Gets the Tag Block corresponding to the found tag.
 HTMLTag HTMLFragment.getTagBlockByName(String tagname, int inipos)
          Gets the tag block consisting of the tag named tagname and the enclosed character data.
 HTMLTag HTMLFragment.getTagById(String tagid)
          Convenience method that gets the tag of ID tagid.
 HTMLTag HTMLFragment.getTagByName(String tagname)
          Convenience method that gets the tag of type taname.
 HTMLTag TagIterator.nextTag()
           
 

Methods in info.informatica.html with parameters of type HTMLTag
 void HTMLEventHandler.endXElement(HTMLTag tag)
           
 void DefaultHTMLEventHandler.endXElement(HTMLTag tag)
           
 void HTMLFragment.removeBlock(HTMLTag tag)
          Removes a tag and all the enclosed fragments, if any.
 void HTMLFragment.removePair(HTMLTag tag)
          Removes both the start and end tag (if any).
 void HTMLEventHandler.startElement(HTMLTag tag)
           
 void DefaultHTMLEventHandler.startElement(HTMLTag tag)
           
 

Constructors in info.informatica.html with parameters of type HTMLTag
HTMLFragment(HTMLTag tag)
           
 

Uses of HTMLTag in info.informatica.html.tag
 

Subclasses of HTMLTag in info.informatica.html.tag
 class BaseFont
          HTML BASE font.
 class Font
          Deprecated.  
 class GenericHTMLTag
          A generic HTML tag.
 class Paragraph
          HTML Paragraph.
 class TableData
          HTML table data tag.
 class TableHeader
          HTML table header tag.
 class TableRow
          HTML table row tag.
 

Methods in info.informatica.html.tag that return HTMLTag
 HTMLTag TagParser.create(String tagname)
          Creates an HTMLTag with the given characteristics.
 HTMLTag TagParser.create(String tagname, info.informatica.doc.FragmentPosition pos)
          Creates an HTMLTag with the given characteristics.
 HTMLTag TagParser.create(String tagname, String tagid)
          Creates an HTMLTag with the given characteristics.
 HTMLTag TagParser.create(String tagname, String tagid, info.informatica.doc.FragmentPosition pos)
          Creates an HTMLTag with the given characteristics.
 HTMLTag HTMLTag.getParent()
          Get this tag's parent tag.
 HTMLTag TagParser.parse(String tag)
          Parses a String to create an HTMLTag.
 HTMLTag TagParser.parse(String tag, info.informatica.doc.FragmentPosition pos)
          Parses a String to create an HTMLTag with the given position.
 

Methods in info.informatica.html.tag with parameters of type HTMLTag
static Attributes Attributes.create(HTMLTag tag)
           
static Attributes Attributes.create(HTMLTag tag, String attributes)
           
 void HTMLTag.setParent(HTMLTag parent)
          Set this tag's parent tag.