Class TagCloud


  • @Deprecated
    public class TagCloud
    extends Object
    Deprecated.
    the entire Autotag plugin is deprecated, along with its data structures
    Data structure used by the AutoTagPlugin, holding information about a collection of tags appearing the most in a collection of documents.
    Version:
    $Id: a64ae68b60dd714c85fb02aeab943306121b774f $
    • Constructor Detail

      • TagCloud

        public TagCloud()
        Deprecated.
    • Method Detail

      • getHtml

        public String getHtml()
        Deprecated.
        Get the HTML markup to represent this tag cloud.
        Returns:
        HTML markup
      • getText

        public String getText()
        Deprecated.
        Returns:
        the analyzed text
        See Also:
        text
      • setText

        public void setText​(String text)
        Deprecated.
        Parameters:
        text - the text to analyze
        See Also:
        text
      • getWordList

        public String[] getWordList()
        Deprecated.
        Returns:
        the tokenized text
        See Also:
        wordList
      • setWordList

        public void setWordList​(String[] wordList)
        Deprecated.
        Parameters:
        wordList - the tokenized text
        See Also:
        wordList
      • getCountedWordMap

        public Map<String,​Integer> getCountedWordMap()
        Deprecated.
        Returns:
        map of token->number of appearances count for each token present in the text
        See Also:
        countedWordMap
      • setCountedWordMap

        public void setCountedWordMap​(Map<String,​Integer> countedWordMap)
        Deprecated.
        Parameters:
        countedWordMap - map of token->number of appearances count for each token present in the text
        See Also:
        countedWordMap
      • setStemmedWordFreqMap

        public void setStemmedWordFreqMap​(Map<String,​Integer> stemmedWordFreqMap)
        Deprecated.
        Parameters:
        stemmedWordFreqMap - map of lead words and their frequencies
        See Also:
        stemmedWordFreqMap
      • getTags

        public Set<Tag> getTags()
        Deprecated.
        Returns:
        the set of extracted tags
        See Also:
        tags
      • setTags

        public void setTags​(Set<Tag> tags)
        Deprecated.
        Parameters:
        tags - the set of extracted tags
        See Also:
        tags