File tree Expand file tree Collapse file tree
src/java/org/apache/commons/codec/language Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525 * Margaret Odell and Robert Russell
2626 *
2727 * @author Apache Software Foundation
28- * @version $Id: RefinedSoundex.java,v 1.16 2004/02/29 04:08:31 tobrien Exp $
28+ * @version $Id: RefinedSoundex.java,v 1.17 2004/03/17 18:30:59 ggregory Exp $
2929 */
3030public class RefinedSoundex implements StringEncoder {
3131
@@ -90,6 +90,7 @@ public RefinedSoundex(char[] mapping) {
9090 *
9191 * @throws EncoderException
9292 * if an error occurs encoding one of the strings
93+ * @since 1.3
9394 */
9495 public int difference (String s1 , String s2 ) throws EncoderException {
9596 return SoundexUtils .difference (this , s1 , s2 );
Original file line number Diff line number Diff line change 2525 * with similar phonemes.
2626 *
2727 * @author Apache Software Foundation
28- * @version $Id: Soundex.java,v 1.20 2004/02/29 04:08:31 tobrien Exp $
28+ * @version $Id: Soundex.java,v 1.21 2004/03/17 18:30:59 ggregory Exp $
2929 */
3030public class Soundex implements StringEncoder {
3131
@@ -60,6 +60,7 @@ public class Soundex implements StringEncoder {
6060 *
6161 * @throws EncoderException
6262 * if an error occurs encoding one of the strings
63+ * @since 1.3
6364 */
6465 public int difference (String s1 , String s2 ) throws EncoderException {
6566 return SoundexUtils .difference (this , s1 , s2 );
Original file line number Diff line number Diff line change 2323 * Utility methods for {@link Soundex} and {@link RefinedSoundex} classes.
2424 *
2525 * @author Apache Software Foundation
26- * @version $Id: SoundexUtils.java,v 1.4 2004/02/29 04:08:31 tobrien Exp $
26+ * @version $Id: SoundexUtils.java,v 1.5 2004/03/17 18:31:35 ggregory Exp $
27+ * @since 1.3
2728 */
2829final class SoundexUtils {
2930
You can’t perform that action at this time.
0 commit comments