jdk/src/share/classes/javax/sql/rowset/Predicate.java
changeset 18564 f9db68ff2cbb
parent 18156 edb590d448c5
child 19868 37b6dcade23a
equal deleted inserted replaced
18563:35827454c772 18564:f9db68ff2cbb
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   109      * This method is typically called a <code>FilteredRowSet</code> object
   109      * This method is typically called a <code>FilteredRowSet</code> object
   110      * internal methods (not public) that control the <code>RowSet</code> object's
   110      * internal methods (not public) that control the <code>RowSet</code> object's
   111      * cursor moving  from row to the next. In addition, if this internal method
   111      * cursor moving  from row to the next. In addition, if this internal method
   112      * moves the cursor onto a row that has been deleted, the internal method will
   112      * moves the cursor onto a row that has been deleted, the internal method will
   113      * continue to ove the cursor until a valid row is found.
   113      * continue to ove the cursor until a valid row is found.
   114      *
   114      * @param rs The {@code RowSet} to be evaluated
   115      * @return <code>true</code> if there are more rows in the filter;
   115      * @return <code>true</code> if there are more rows in the filter;
   116      *     <code>false</code> otherwise
   116      *     <code>false</code> otherwise
   117      */
   117      */
   118     public boolean evaluate(RowSet rs);
   118     public boolean evaluate(RowSet rs);
   119 
   119