Return-Path: X-Original-To: apmail-incubator-accumulo-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-accumulo-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6D51B91D9 for ; Mon, 12 Mar 2012 16:00:23 +0000 (UTC) Received: (qmail 32006 invoked by uid 500); 12 Mar 2012 16:00:23 -0000 Delivered-To: apmail-incubator-accumulo-commits-archive@incubator.apache.org Received: (qmail 31970 invoked by uid 500); 12 Mar 2012 16:00:22 -0000 Mailing-List: contact accumulo-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: accumulo-dev@incubator.apache.org Delivered-To: mailing list accumulo-commits@incubator.apache.org Received: (qmail 31962 invoked by uid 99); 12 Mar 2012 16:00:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Mar 2012 16:00:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Mar 2012 16:00:22 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id E893A2388C93; Mon, 12 Mar 2012 16:00:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1299722 - /incubator/accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/iterators/user/RowFilter.java Date: Mon, 12 Mar 2012 16:00:01 -0000 To: accumulo-commits@incubator.apache.org From: kturner@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120312160001.E893A2388C93@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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 */