Uses of Class
de.l3s.boilerpipe.document.TextBlock

Packages that use TextBlock
de.l3s.boilerpipe.conditions   
de.l3s.boilerpipe.document The classes in this package represent the simple Boilerpipe document model. 
de.l3s.boilerpipe.filters.english The BoilerpipeFilters in this package have only been tested on English text. 
de.l3s.boilerpipe.labels   
de.l3s.boilerpipe.sax Classes related to parsing and producing HTML from/to Boilerpipe TextDocuments. 
 

Uses of TextBlock in de.l3s.boilerpipe.conditions
 

Methods in de.l3s.boilerpipe.conditions with parameters of type TextBlock
 boolean TextBlockCondition.meetsCondition(TextBlock tb)
          Returns true iff the given TextBlock tb meets the defined condition.
 

Uses of TextBlock in de.l3s.boilerpipe.document
 

Fields in de.l3s.boilerpipe.document declared as TextBlock
static TextBlock TextBlock.EMPTY_END
           
static TextBlock TextBlock.EMPTY_START
           
 

Methods in de.l3s.boilerpipe.document that return types with arguments of type TextBlock
 java.util.List<TextBlock> TextDocument.getTextBlocks()
          Returns the TextBlocks of this document.
 

Methods in de.l3s.boilerpipe.document with parameters of type TextBlock
 void TextBlock.mergeNext(TextBlock other)
           
 

Constructor parameters in de.l3s.boilerpipe.document with type arguments of type TextBlock
TextDocument(java.util.List<TextBlock> textBlocks)
          Creates a new TextDocument with given TextBlocks, and no title.
TextDocument(java.lang.String title, java.util.List<TextBlock> textBlocks)
          Creates a new TextDocument with given TextBlocks and given title.
 

Uses of TextBlock in de.l3s.boilerpipe.filters.english
 

Methods in de.l3s.boilerpipe.filters.english with parameters of type TextBlock
protected  boolean DensityRulesClassifier.classify(TextBlock prev, TextBlock curr, TextBlock next)
           
protected  boolean NumWordsRulesClassifier.classify(TextBlock prev, TextBlock curr, TextBlock next)
           
 

Uses of TextBlock in de.l3s.boilerpipe.labels
 

Methods in de.l3s.boilerpipe.labels with parameters of type TextBlock
protected  void LabelAction.addLabelsTo(TextBlock tb)
           
 void ConditionalLabelAction.addTo(TextBlock tb)
           
 void LabelAction.addTo(TextBlock tb)
           
 

Uses of TextBlock in de.l3s.boilerpipe.sax
 

Methods in de.l3s.boilerpipe.sax with parameters of type TextBlock
protected  void BoilerpipeHTMLContentHandler.addTextBlock(TextBlock tb)