com.xpn.xwiki.plugin.autotag
Class TagCloud

java.lang.Object
  extended by com.xpn.xwiki.plugin.autotag.TagCloud

Deprecated. the entire Autotag plugin is deprecated, along with its data structures

@Deprecated
public class TagCloud
extends Object

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 Summary
TagCloud()
          Deprecated.  
 
Method Summary
 Map<String,Integer> getCountedWordMap()
          Deprecated.  
 String getHtml()
          Deprecated. Get the HTML markup to represent this tag cloud.
 Map<String,Integer> getStemmedWordFreqMap()
          Deprecated.  
 Map<String,Map<String,Integer>> getStemmedWordMap()
          Deprecated.  
 Set<Tag> getTags()
          Deprecated.  
 String getText()
          Deprecated.  
 String[] getWordList()
          Deprecated.  
 void setCountedWordMap(Map<String,Integer> countedWordMap)
          Deprecated.  
 void setStemmedWordFreqMap(Map<String,Integer> stemmedWordFreqMap)
          Deprecated.  
 void setStemmedWordMap(Map<String,Map<String,Integer>> stemmedWordMap)
          Deprecated.  
 void setTags(Set<Tag> tags)
          Deprecated.  
 void setText(String text)
          Deprecated.  
 void setWordList(String[] wordList)
          Deprecated.  
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

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

getStemmedWordMap

public Map<String,Map<String,Integer>> getStemmedWordMap()
Deprecated. 
Returns:
token groups
See Also:
stemmedWordMap

setStemmedWordMap

public void setStemmedWordMap(Map<String,Map<String,Integer>> stemmedWordMap)
Deprecated. 
Parameters:
stemmedWordMap - token groups
See Also:
stemmedWordMap

getStemmedWordFreqMap

public Map<String,Integer> getStemmedWordFreqMap()
Deprecated. 
Returns:
map of lead words and their frequencies
See Also:
stemmedWordFreqMap

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


Copyright © 2004-2013 XWiki. All Rights Reserved.