Revision: 14987
          http://gate.svn.sourceforge.net/gate/?rev=14987&view=rev
Author:   markagreenwood
Date:     2012-01-10 17:01:29 +0000 (Tue, 10 Jan 2012)
Log Message:
-----------
some more javadoc fixes

Modified Paths:
--------------
    gate/trunk/src/gate/creole/gazetteer/LinearNode.java
    gate/trunk/src/gate/creole/gazetteer/NodePosition.java
    gate/trunk/src/gate/creole/metadata/CreoleParameter.java
    gate/trunk/src/gate/creole/orthomatcher/AnnotationOrthography.java
    gate/trunk/src/gate/creole/orthomatcher/BasicAnnotationOrthography.java
    gate/trunk/src/gate/creole/orthomatcher/OrthoMatcherHelper.java

Modified: gate/trunk/src/gate/creole/gazetteer/LinearNode.java
===================================================================
--- gate/trunk/src/gate/creole/gazetteer/LinearNode.java        2012-01-10 
16:31:52 UTC (rev 14986)
+++ gate/trunk/src/gate/creole/gazetteer/LinearNode.java        2012-01-10 
17:01:29 UTC (rev 14987)
@@ -105,7 +105,7 @@
   }
 
   /** Sets the minor type
-   *  @return the minor type */
+   */
   public void setMinorType(String minorType) {
     minor = minorType;
   }

Modified: gate/trunk/src/gate/creole/gazetteer/NodePosition.java
===================================================================
--- gate/trunk/src/gate/creole/gazetteer/NodePosition.java      2012-01-10 
16:31:52 UTC (rev 14986)
+++ gate/trunk/src/gate/creole/gazetteer/NodePosition.java      2012-01-10 
17:01:29 UTC (rev 14987)
@@ -48,8 +48,6 @@
    * @param oen - old end offset
    * @param nsn - new start offset
    * @param nen - new end offset
-   * @param space - total deducted spaces due to change in the text before
-   * the start offset in the document
    */
   public NodePosition(long osn, long oen, long nsn, long nen) {
     originalStartOffset = osn;

Modified: gate/trunk/src/gate/creole/metadata/CreoleParameter.java
===================================================================
--- gate/trunk/src/gate/creole/metadata/CreoleParameter.java    2012-01-10 
16:31:52 UTC (rev 14986)
+++ gate/trunk/src/gate/creole/metadata/CreoleParameter.java    2012-01-10 
17:01:29 UTC (rev 14987)
@@ -47,8 +47,7 @@
 @Retention(RetentionPolicy.RUNTIME)
 public @interface CreoleParameter {
   /**
-   * Dummy type used to signify that no value has been supplied for {@link
-   * collectionElementType()}.
+   * Dummy type used to signify that no value has been supplied for {@link 
#collectionElementType()}.
    */
   public static interface NoElementType {}
   

Modified: gate/trunk/src/gate/creole/orthomatcher/AnnotationOrthography.java
===================================================================
--- gate/trunk/src/gate/creole/orthomatcher/AnnotationOrthography.java  
2012-01-10 16:31:52 UTC (rev 14986)
+++ gate/trunk/src/gate/creole/orthomatcher/AnnotationOrthography.java  
2012-01-10 17:01:29 UTC (rev 14987)
@@ -1,17 +1,16 @@
 package gate.creole.orthomatcher;
 
-import java.io.IOException;
+import gate.Annotation;
+import gate.AnnotationSet;
+import gate.Document;
+import gate.creole.ExecutionException;
+
 import java.util.ArrayList;
 import java.util.HashMap;
 import java.util.HashSet;
 import java.util.List;
 import java.util.Map;
 
-import gate.Annotation;
-import gate.AnnotationSet;
-import gate.Document;
-import gate.creole.ExecutionException;
-
 /*
  * This interface is used so that one can create an orthography class that that
  * defines the behaviour of the Orthomatcher.
@@ -19,10 +18,7 @@
 public interface AnnotationOrthography {
   /**
    * Returns normalized content of an annotation - removes extra white spaces.
-   * 
-   * @param a
-   * @param d
-   * @return
+   *
    * @throws ExecutionException
    */
   public String getStringForAnnotation(Annotation a, gate.Document d)

Modified: 
gate/trunk/src/gate/creole/orthomatcher/BasicAnnotationOrthography.java
===================================================================
--- gate/trunk/src/gate/creole/orthomatcher/BasicAnnotationOrthography.java     
2012-01-10 16:31:52 UTC (rev 14986)
+++ gate/trunk/src/gate/creole/orthomatcher/BasicAnnotationOrthography.java     
2012-01-10 17:01:29 UTC (rev 14987)
@@ -285,8 +285,6 @@
 
   /**
    * Tables for namematch info (used by the namematch rules)
-   * 
-   * @return
    */
   public HashSet buildTables(AnnotationSet nameAllAnnots) {
     FeatureMap tempMap = Factory.newFeatureMap();

Modified: gate/trunk/src/gate/creole/orthomatcher/OrthoMatcherHelper.java
===================================================================
--- gate/trunk/src/gate/creole/orthomatcher/OrthoMatcherHelper.java     
2012-01-10 16:31:52 UTC (rev 14986)
+++ gate/trunk/src/gate/creole/orthomatcher/OrthoMatcherHelper.java     
2012-01-10 17:01:29 UTC (rev 14987)
@@ -34,10 +34,6 @@
          /**
           * Returns true if only one of s1 and s2 is a single character and 
the two strings match on that
           * initial
-          * 
-          * @param s1  
-          * @param s2
-          * @return
           */
          public static boolean initialMatch(String s1, String s2) {
            return (((s1.length() == 1) ^ (s2.length() == 1) ) && (s1.charAt(0) 
== s2.charAt(0)));

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Write once. Port to many.
Get the SDK and tools to simplify cross-platform app development. Create 
new or port existing apps to sell to consumers worldwide. Explore the 
Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
http://p.sf.net/sfu/intel-appdev
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to