Uses of Interface
com.kohlschutter.boilerpipe.sax.TagAction
-
Packages that use TagAction Package Description com.kohlschutter.boilerpipe.sax Classes related to parsing and producing HTML from/to Boilerpipe TextDocuments. -
-
Uses of TagAction in com.kohlschutter.boilerpipe.sax
Classes in com.kohlschutter.boilerpipe.sax that implement TagAction Modifier and Type Class Description static classCommonTagActions.BlockTagLabelActionCommonTagActionsfor block-level elements, which triggers someLabelActionon the generatedTextBlock.static classCommonTagActions.Chainedstatic classCommonTagActions.InlineTagLabelActionclassMarkupTagActionAssigns labels for element CSS classes and ids to the correspondingTextBlock.Fields in com.kohlschutter.boilerpipe.sax declared as TagAction Modifier and Type Field Description private TagActionCommonTagActions.Chained. t1private TagActionCommonTagActions.Chained. t2static TagActionCommonTagActions. TA_ANCHOR_TEXTMarks this tag as "anchor" (this should usually only be set for the<A>tag).static TagActionCommonTagActions. TA_BLOCK_LEVELExplicitly marks this tag a simple "block-level" element, which always generates whitespacestatic TagActionCommonTagActions. TA_BODYMarks this tag the body element (this should usually only be set for the<BODY>tag).static TagActionCommonTagActions. TA_FONTSpecial TagAction for the<FONT>tag, which keeps track of the absolute and relative font size.static TagActionCommonTagActions. TA_IGNORABLE_ELEMENTMarks this tag as "ignorable", i.e.static TagActionCommonTagActions. TA_INLINEDeprecated.UseCommonTagActions.TA_INLINE_WHITESPACEinsteadstatic TagActionCommonTagActions. TA_INLINE_NO_WHITESPACEMarks this tag a simple "inline" element, which neither generates whitespace, nor a new block.static TagActionCommonTagActions. TA_INLINE_WHITESPACEMarks this tag a simple "inline" element, which generates whitespace, but no new block.Fields in com.kohlschutter.boilerpipe.sax with type parameters of type TagAction Modifier and Type Field Description private java.util.Map<java.lang.String,TagAction>BoilerpipeHTMLContentHandler. tagActionsMethods in com.kohlschutter.boilerpipe.sax with parameters of type TagAction Modifier and Type Method Description protected voidTagActionMap. addTagAction(java.lang.String tag, TagAction action)Adds a particularTagActionfor a given tag.protected voidTagActionMap. setTagAction(java.lang.String tag, TagAction action)Sets a particularTagActionfor a given tag.Constructors in com.kohlschutter.boilerpipe.sax with parameters of type TagAction Constructor Description Chained(TagAction t1, TagAction t2)
-