You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opennlp.apache.org by jk...@apache.org on 2014/03/22 02:57:52 UTC

svn commit: r1580116 - /opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/entitylinker/EntityLinker.java

Author: jkosin
Date: Sat Mar 22 01:57:51 2014
New Revision: 1580116

URL: http://svn.apache.org/r1580116
Log:
OPENNLP-669 Replaced < and > with the HTML equivalent &lt; and &gt;.

Modified:
    opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/entitylinker/EntityLinker.java

Modified: opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/entitylinker/EntityLinker.java
URL: http://svn.apache.org/viewvc/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/entitylinker/EntityLinker.java?rev=1580116&r1=1580115&r2=1580116&view=diff
==============================================================================
--- opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/entitylinker/EntityLinker.java (original)
+++ opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/entitylinker/EntityLinker.java Sat Mar 22 01:57:51 2014
@@ -29,7 +29,7 @@ import opennlp.tools.util.Span;
  * implemented as deterministic
  *
  * @param <T> A type that extends Span. LinkedSpan and BaseLink are provided to
- *            provide this signature: EntityLinker<LinkedSpan<BaseLink>> as a
+ *            provide this signature: EntityLinker&lt;LinkedSpan&lt;BaseLink&gt;&gt; as a
  *            default
  */
 public interface EntityLinker<T extends Span> {
@@ -62,8 +62,8 @@ public interface EntityLinker<T extends 
    *                         sentence. The outer array refers to the sentence,
    *                         the inner array refers to the tokens that for the
    *                         same sentence.Similar in nature to
-   *                         Map<SentenceIndex,List<Name Spans For This
-   *                         Sentence's Tokens>> @ return
+   *                         Map&lt;SentenceIndex,List&lt;Name Spans For This
+   *                         Sentence's Tokens&gt;&gt; @ return
    */
   List<T> find(String doctext, Span[] sentences, String[][] tokensBySentence, Span[][] namesBySentence);