You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2012/03/12 17:00:01 UTC

svn commit: r1299722 - /incubator/accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/iterators/user/RowFilter.java

Author: kturner
Date: Mon Mar 12 16:00:01 2012
New Revision: 1299722

URL: http://svn.apache.org/viewvc?rev=1299722&view=rev
Log:
ACCUMULO-403 improved row filter javadoc

Modified:
    incubator/accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/iterators/user/RowFilter.java

Modified: incubator/accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/iterators/user/RowFilter.java
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/iterators/user/RowFilter.java?rev=1299722&r1=1299721&r2=1299722&view=diff
==============================================================================
--- incubator/accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/iterators/user/RowFilter.java (original)
+++ incubator/accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/iterators/user/RowFilter.java Mon Mar 12 16:00:01 2012
@@ -126,7 +126,9 @@ public abstract class RowFilter extends 
    * 
    * 
    * @param rowIterator
-   *          - An iterator over the row.
+   *          - An iterator over the row. This iterator is confined to the row. Seeking past the end of the row will return no data. Seeking before the row will
+   *          always set top to the first column in the current row. By default this iterator will only see the columns the parent was seeked with. To see more
+   *          columns reseek this iterator with those columns.
    * @return false if a row should be suppressed, otherwise true.
    * @throws IOException
    */