From: <kon...@us...> - 2010-09-07 19:24:16
|
Revision: 1132 http://cishell.svn.sourceforge.net/cishell/?rev=1132&view=rev Author: kongchinhua Date: 2010-09-07 19:24:10 +0000 (Tue, 07 Sep 2010) Log Message: ----------- Fixed style guide warning Modified Paths: -------------- trunk/core/org.cishell.utilities/src/org/cishell/utilities/FrequencyMap.java Modified: trunk/core/org.cishell.utilities/src/org/cishell/utilities/FrequencyMap.java =================================================================== --- trunk/core/org.cishell.utilities/src/org/cishell/utilities/FrequencyMap.java 2010-09-07 19:15:01 UTC (rev 1131) +++ trunk/core/org.cishell.utilities/src/org/cishell/utilities/FrequencyMap.java 2010-09-07 19:24:10 UTC (rev 1132) @@ -31,7 +31,7 @@ } /** - * Add the given key to the map and increase the frequency by 1 + * Add the given key to the map and increase the frequency by 1. * @param key - key to be added */ public void add(E key) { @@ -62,14 +62,14 @@ } /** - * Retrieve a set of keys stored in this map + * Retrieve a set of keys stored in this map. */ public Set<E> keySet() { return itemToFrequencyMap.keySet(); } /** - * Get the emergence frequency for the given key + * Get the emergence frequency for the given key. * @param key - item to be lookup * @return Return number of times the key exists * if lookup success. Return zero if key not exist This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |