You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by jo...@apache.org on 2009/05/13 17:34:36 UTC

svn commit: r774405 - /incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/ConstraintFactory.java

Author: joern
Date: Wed May 13 15:34:34 2009
New Revision: 774405

URL: http://svn.apache.org/viewvc?rev=774405&view=rev
Log:
UIMA-1341 changed path list from Feature to String and updated javadoc

Modified:
    incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/ConstraintFactory.java

Modified: incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/ConstraintFactory.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/ConstraintFactory.java?rev=774405&r1=774404&r2=774405&view=diff
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/ConstraintFactory.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/ConstraintFactory.java Wed May 13 15:34:34 2009
@@ -108,12 +108,12 @@
    * some int valued feature, such as the start feature of an annotation.
    * 
    * @param path
-   *          The path to embed the constraint under. This is a list of {@link Feature features}.
+   *          The path to embed the constraint under. This is a list of {@link Feature} names.
    * @param constraint
    *          The constraint to be embedded.
    * @return A new FSMatchConstraint.
    */
-  public abstract FSMatchConstraint embedConstraint(ArrayList<Feature> path, FSConstraint constraint);
+  public abstract FSMatchConstraint embedConstraint(ArrayList<String> path, FSConstraint constraint);
 
   /**
    * Conjoin two constraints.