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

Modified Paths:
--------------
    gate/trunk/src/gate/jape/constraint/AnnotationAccessor.java
    gate/trunk/src/gate/jape/constraint/ComparablePredicate.java
    gate/trunk/src/gate/jape/constraint/ConstraintFactory.java
    gate/trunk/src/gate/jape/constraint/ConstraintPredicate.java
    gate/trunk/src/gate/jape/constraint/EmbeddedConstraintPredicate.java

Modified: gate/trunk/src/gate/jape/constraint/AnnotationAccessor.java
===================================================================
--- gate/trunk/src/gate/jape/constraint/AnnotationAccessor.java 2012-01-10 
19:34:56 UTC (rev 14996)
+++ gate/trunk/src/gate/jape/constraint/AnnotationAccessor.java 2012-01-10 
19:42:28 UTC (rev 14997)
@@ -43,7 +43,6 @@
 
   /**
    * Return the key for this accessor.
-   * @return
    */
   public Object getKey();
 
@@ -57,8 +56,6 @@
    *          require the context information so it may be null. Some
    *          accessor implementations may throw an exception without
    *          it.
-   *
-   * @return
    */
   public Object getValue(Annotation annot, AnnotationSet context);
 }

Modified: gate/trunk/src/gate/jape/constraint/ComparablePredicate.java
===================================================================
--- gate/trunk/src/gate/jape/constraint/ComparablePredicate.java        
2012-01-10 19:34:56 UTC (rev 14996)
+++ gate/trunk/src/gate/jape/constraint/ComparablePredicate.java        
2012-01-10 19:42:28 UTC (rev 14997)
@@ -58,9 +58,6 @@
    * Use <code>compareTo</code> to compare set value with the given
    * object, doing basic type conversion to get the two objects to the
    * same class.
-   *
-   * @param obj
-   * @return
    * @throws JapeException if the provided object is not a Comparable or
    *           the classes cannot be compared.
    */

Modified: gate/trunk/src/gate/jape/constraint/ConstraintFactory.java
===================================================================
--- gate/trunk/src/gate/jape/constraint/ConstraintFactory.java  2012-01-10 
19:34:56 UTC (rev 14996)
+++ gate/trunk/src/gate/jape/constraint/ConstraintFactory.java  2012-01-10 
19:42:28 UTC (rev 14997)
@@ -74,9 +74,6 @@
 
   /**
    * Create a new constraint for the given annotation type
-   *
-   * @param annotType
-   * @return
    */
   public Constraint createConstraint(String annotType) {
     return new Constraint(annotType);
@@ -109,7 +106,6 @@
    *
    * @param name feature name associated with the predicate
    * @param value value associated with the predicate
-   * @return
    */
   public ConstraintPredicate createPredicate(String name, Object value) {
     return createPredicate(createDefaultAccessor(name), value);

Modified: gate/trunk/src/gate/jape/constraint/ConstraintPredicate.java
===================================================================
--- gate/trunk/src/gate/jape/constraint/ConstraintPredicate.java        
2012-01-10 19:34:56 UTC (rev 14996)
+++ gate/trunk/src/gate/jape/constraint/ConstraintPredicate.java        
2012-01-10 19:42:28 UTC (rev 14997)
@@ -60,8 +60,6 @@
 
   /**
    * The accessor associated with this predicate.
-   *
-   * @return
    */
   public AnnotationAccessor getAccessor();
 
@@ -73,16 +71,12 @@
   /**
    * The value used in comparisons against passed in data in
    * {@link #matches(Annotation)}.
-   *
-   * @return
    */
   public Object getValue();
 
   /**
    * Set the value used in comparisons against passed in data in
    * {@link #matches(Annotation)}.
-   *
-   * @param value
    */
   public void setValue(Object value);
 
@@ -95,10 +89,6 @@
   /**
    * Evaluates if the provided annotation meets the requirements of the
    * predicate.
-   *
-   * @param annot
-   * @param context
-   * @return
    * @throws JapeException
    */
   public boolean matches(Annotation annot, AnnotationSet context) throws 
JapeException;

Modified: gate/trunk/src/gate/jape/constraint/EmbeddedConstraintPredicate.java
===================================================================
--- gate/trunk/src/gate/jape/constraint/EmbeddedConstraintPredicate.java        
2012-01-10 19:34:56 UTC (rev 14996)
+++ gate/trunk/src/gate/jape/constraint/EmbeddedConstraintPredicate.java        
2012-01-10 19:42:28 UTC (rev 14997)
@@ -61,8 +61,6 @@
 
   /**
    * If there are attribute constraints, filter the set.
-   * @param containedSet
-   * @return
    */
   protected Collection<Annotation> filterMatches(AnnotationSet containedSet) {
     if (containedSet == null)

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