Author: ggregory
Date: Mon Jan 24 04:29:58 2011
New Revision: 1062642
URL: http://svn.apache.org/viewvc?rev=1062642&view=rev
Log:
Javadoc clean ups (especially @see tags)
Modified:
commons/proper/codec/trunk/src/java/org/apache/commons/codec/language/ColognePhonetic.java
Modified:
commons/proper/codec/trunk/src/java/org/apache/commons/codec/language/ColognePhonetic.java
URL:
http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/java/org/apache/commons/codec/language/ColognePhonetic.java?rev=1062642&r1=1062641&r2=1062642&view=diff
==============================================================================
---
commons/proper/codec/trunk/src/java/org/apache/commons/codec/language/ColognePhonetic.java
(original)
+++
commons/proper/codec/trunk/src/java/org/apache/commons/codec/language/ColognePhonetic.java
Mon Jan 24 04:29:58 2011
@@ -23,18 +23,14 @@ import org.apache.commons.codec.EncoderE
import org.apache.commons.codec.StringEncoder;
/**
- * <h1>ColognePhonetic</h1>
- *
* <p>
- * <b>ColognePhonetic</b> provides an implementation of the <a
- * href="http://de.wikipedia.org/wiki/K%C3%B6lner_Phonetik">âKölner
- * Phoneticâ</a> (cologne phonetic) algorithm issued by Hans Joachim Postel
in
- * 1969.
+ * Implements of the <a
href="http://de.wikipedia.org/wiki/K%C3%B6lner_Phonetik">âKölner
Phoneticâ</a> (cologne
+ * phonetic) algorithm issued by Hans Joachim Postel in 1969.
* </p>
*
* <p>
- * The <i>Kölner Phonetik</i> is a phonetic algorithm which is optimized for
the
- * German language. It is related to the well-known soundex algorithm.
+ * The <i>Kölner Phonetik</i> is a phonetic algorithm which is optimized for
the German language. It is related to the
+ * well-known soundex algorithm.
* </p>
*
* <h2>Algorithm</h2>
@@ -44,9 +40,8 @@ import org.apache.commons.codec.StringEn
* <li>
* <h3>First step:</h3>
* After a preprocessing (convertion to upper case, transcription of <a
- * href="http://en.wikipedia.org/wiki/Germanic_umlaut">germanic umlauts</a>,
- * removal of non alphabetical characters) the letters of the supplied text are
- * replaced by their phonetic code according to the folowing table.
+ * href="http://en.wikipedia.org/wiki/Germanic_umlaut">germanic umlauts</a>,
removal of non alphabetical characters) the
+ * letters of the supplied text are replaced by their phonetic code according
to the folowing table.
* <table border="1">
* <tbody>
* <tr>
@@ -152,9 +147,8 @@ import org.apache.commons.codec.StringEn
* </tbody>
* </table>
* <p>
- * <small><i>(Source: <a href=
- * "http://de.wikipedia.org/wiki/K%C3%B6lner_Phonetik#Buchstabencodes"
- * >Wikipedia (de): Kölner Phonetik â Buchstabencodes</a>)</i></small>
+ * <small><i>(Source: <a href=
"http://de.wikipedia.org/wiki/K%C3%B6lner_Phonetik#Buchstabencodes" >Wikipedia
(de):
+ * Kölner Phonetik â Buchstabencodes</a>)</i></small>
* </p>
*
* <h4>Example:</h4>
@@ -178,20 +172,12 @@ import org.apache.commons.codec.StringEn
*
* </ul>
*
- * @see<ul> <li><a
- * href="http://de.wikipedia.org/wiki/K%C3%B6lner_Phonetik"><span
- * style="font-variant:small-caps">Wikipedia</span> (de): <i>Kölner
- * Phonetik</i></a>âfor German description of the algorithm and more
- * sources.</li> <li>{@linkplain #colognePhonetic(String)}âfor the
- * description of the actual implementation</li> <li>
- * {@linkplain #isCologneEqual(String, String)}</li> <li>
- * {@linkplain StringEncoder}âfor the interface implemented by this
- * class</li> </ul>
- *
+ * @see <a href="http://de.wikipedia.org/wiki/K%C3%B6lner_Phonetik"><span
+ * style="font-variant:small-caps">Wikipedia</span> (de): <i>Kölner
Phonetik</i></a> (a German description of the
+ * algorithm and more sources)
* @author Apache Software Foundation
- * @version 1.5
+ * @since 1.5
*/
-
public class ColognePhonetic implements StringEncoder {
private class CologneLeftBuffer implements CharSequence {