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

Modified Paths:
--------------
    gate/trunk/src/gate/fsm/FSM.java
    gate/trunk/src/gate/jape/ActionContext.java
    gate/trunk/src/gate/jape/Constraint.java
    gate/trunk/src/gate/jape/KleeneOperator.java
    gate/trunk/src/gate/jape/SinglePhaseTransducer.java

Modified: gate/trunk/src/gate/fsm/FSM.java
===================================================================
--- gate/trunk/src/gate/fsm/FSM.java    2012-01-10 19:15:30 UTC (rev 14995)
+++ gate/trunk/src/gate/fsm/FSM.java    2012-01-10 19:34:56 UTC (rev 14996)
@@ -641,12 +641,11 @@
    * state, and round otherwise. A node is green if it's an initial state, red
    * if it's a final state, and black otherwise. Final states are also marked
    * with a double-line outline.
-   *
-   * @see for software to translate the output of this method into pretty 
pictures
-   *  try <a href="http://www.graphviz.org";>the GraphViz web site</a>.
+   * 
+   * @see <a href="http://www.graphviz.org";>GraphViz for visulization</a>
    * @param includeConstraints
-   *            whether to include a stringified representation of each
-   *            transition object as part of its label. The default is false.
+   *          whether to include a stringified representation of each 
transition
+   *          object as part of its label. The default is false.
    */
   public String asGraphViz(boolean includeConstraints) {
     StringBuffer result = new StringBuffer();

Modified: gate/trunk/src/gate/jape/ActionContext.java
===================================================================
--- gate/trunk/src/gate/jape/ActionContext.java 2012-01-10 19:15:30 UTC (rev 
14995)
+++ gate/trunk/src/gate/jape/ActionContext.java 2012-01-10 19:34:56 UTC (rev 
14996)
@@ -47,10 +47,8 @@
    */
   
   /**
-   * Provide access to the name of the current transducer PR. 
-   * 
-   * @return 
-   */
+   * Provide access to the name of the current transducer PR.
+   */ 
   public String getPRName();
   
   /**
@@ -61,8 +59,6 @@
    * the controller is starting or finishing. This method can be used in the
    * controllerStarted or controllerFinished  blocks to prevent any unwanted
    * processing if the PR is disabled.
-   * 
-   * @return
    */
   public boolean isPREnabled();
   

Modified: gate/trunk/src/gate/jape/Constraint.java
===================================================================
--- gate/trunk/src/gate/jape/Constraint.java    2012-01-10 19:15:30 UTC (rev 
14995)
+++ gate/trunk/src/gate/jape/Constraint.java    2012-01-10 19:34:56 UTC (rev 
14996)
@@ -150,8 +150,6 @@
 
   /**
    * Generate a FeatureMap to perform ontology-related compare.
-   *
-   * @return
    */
   protected FeatureMap getOntFeatureMap() {
     if(ontFeatureMap == null) ontFeatureMap = new SimpleFeatureMapImpl();
@@ -163,7 +161,6 @@
    * Legacy support for adding an attribute using a jdm attribute.
    *
    * @deprecated
-   * @param attr
    */
   public void addAttribute(JdmAttribute attr) {
     addAttribute(attr.getName(), attr.getValue());
@@ -271,8 +268,6 @@
   /**
    * Returns string representation of all the attributes that is
    * appropriate for display.
-   *
-   * @return
    */
   public String getAttributesString() {
     StringBuffer retVal = new StringBuffer();
@@ -292,7 +287,7 @@
   } // shortDesc
 
   /**
-   * Invoke {@link #matches(Annotation, Ontology, Object)} on all provided
+   * Invoke {@link #matches(Annotation, Ontology, AnnotationSet)} on all 
provided
    * annotations.
    *
    * @param annots collection of Annotations to test

Modified: gate/trunk/src/gate/jape/KleeneOperator.java
===================================================================
--- gate/trunk/src/gate/jape/KleeneOperator.java        2012-01-10 19:15:30 UTC 
(rev 14995)
+++ gate/trunk/src/gate/jape/KleeneOperator.java        2012-01-10 19:34:56 UTC 
(rev 14996)
@@ -65,8 +65,6 @@
       /**
        * Conversion routine from the old JapeConstants values to
        * the type class.
-       * @param op
-       * @return
        */
       public static KleeneOperator.Type getFromJapeConstant(int op) {
         switch(op) {
@@ -86,9 +84,6 @@
       /**
        * Conversion routine from the string symbol for a type to the type
        * Enum.
-       *
-       * @param symbol
-       * @return
        */
       public static KleeneOperator.Type getFromSymbol(String symbol) {
         for(Type t : Type.values()) {

Modified: gate/trunk/src/gate/jape/SinglePhaseTransducer.java
===================================================================
--- gate/trunk/src/gate/jape/SinglePhaseTransducer.java 2012-01-10 19:15:30 UTC 
(rev 14995)
+++ gate/trunk/src/gate/jape/SinglePhaseTransducer.java 2012-01-10 19:34:56 UTC 
(rev 14996)
@@ -574,8 +574,6 @@
 
   /**
    * Return the annotation with the right-most end node
-   * @param annots
-   * @return
    */
   protected Annotation getRightMostAnnotation(Collection<Annotation> annots) {
     long maxOffset = -1;

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