Uses of Interface
de.l3s.boilerpipe.sax.TagAction

Packages that use TagAction
de.l3s.boilerpipe.sax Classes related to parsing and producing HTML from/to Boilerpipe TextDocuments. 
 

Uses of TagAction in de.l3s.boilerpipe.sax
 

Classes in de.l3s.boilerpipe.sax that implement TagAction
static class CommonTagActions.BlockTagLabelAction
          CommonTagActions for block-level elements, which triggers some LabelAction on the generated TextBlock.
static class CommonTagActions.Chained
           
static class CommonTagActions.InlineTagLabelAction
          CommonTagActions for inline elements, which triggers some LabelAction on the generated TextBlock.
 class MarkupTagAction
          Assigns labels for element CSS classes and ids to the corresponding TextBlock.
 

Fields in de.l3s.boilerpipe.sax declared as TagAction
static TagAction CommonTagActions.TA_ANCHOR_TEXT
          Marks this tag as "anchor" (this should usually only be set for the <A> tag).
static TagAction CommonTagActions.TA_BLOCK_LEVEL
          Explicitly marks this tag a simple "block-level" element, which always generates whitespace
static TagAction CommonTagActions.TA_BODY
          Marks this tag the body element (this should usually only be set for the <BODY> tag).
static TagAction CommonTagActions.TA_FONT
          Special TagAction for the <FONT> tag, which keeps track of the absolute and relative font size.
static TagAction CommonTagActions.TA_IGNORABLE_ELEMENT
          Marks this tag as "ignorable", i.e.
static TagAction CommonTagActions.TA_INLINE
          Deprecated. Use CommonTagActions.TA_INLINE_WHITESPACE instead
static TagAction CommonTagActions.TA_INLINE_NO_WHITESPACE
          Marks this tag a simple "inline" element, which neither generates whitespace, nor a new block.
static TagAction CommonTagActions.TA_INLINE_WHITESPACE
          Marks this tag a simple "inline" element, which generates whitespace, but no new block.
 

Methods in de.l3s.boilerpipe.sax with parameters of type TagAction
protected  void TagActionMap.addTagAction(java.lang.String tag, TagAction action)
          Adds a particular TagAction for a given tag.
protected  void TagActionMap.setTagAction(java.lang.String tag, TagAction action)
          Sets a particular TagAction for a given tag.
 

Constructors in de.l3s.boilerpipe.sax with parameters of type TagAction
CommonTagActions.Chained(TagAction t1, TagAction t2)