Searched defs:columnIdxes (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DJoinable.java161 * @param columnIdxes an array of <code>int</code> identifying the indexes of the
167 public void setMatchColumn(int[] columnIdxes) throws SQLException; argument
207 * <code>setMatchColumn(int[] columnIdxes)</code>.
253 * @param columnIdxes an arrary of <code>int</code> that identifies the indexes
260 public void unsetMatchColumn(int[] columnIdxes) throws SQLException; argument
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJdbcRowSetImpl.java3740 * @param columnIdxes the index into this rowset
3746 public void unsetMatchColumn(int[] columnIdxes) throws SQLException { argument
3749 for( int j= 0 ;j < columnIdxes.length; j++) {
3751 if(columnIdxes[j] != i_val) {
3756 for( int i = 0;i < columnIdxes.length ;i++) {
3769 * @param columnIdxes the index into this rowset
3775 public void unsetMatchColumn(String[] columnIdxes) throws SQLException { argument
3777 for(int j = 0 ;j < columnIdxes.length; j++) {
3778 if( !columnIdxes[j].equals(strMatchColumns.get(j)) ){
3783 for(int i = 0 ; i < columnIdxes
3858 setMatchColumn(int[] columnIdxes) argument
[all...]
H A DCachedRowSetImpl.java6916 * @param columnIdxes the index into this rowset
6922 public void unsetMatchColumn(int[] columnIdxes) throws SQLException { argument
6925 for( int j= 0 ;j < columnIdxes.length; j++) {
6927 if(columnIdxes[j] != i_val) {
6932 for( int i = 0;i < columnIdxes.length ;i++) {
6945 * @param columnIdxes the index into this rowset
6951 public void unsetMatchColumn(String[] columnIdxes) throws SQLException { argument
6953 for(int j = 0 ;j < columnIdxes.length; j++) {
6954 if( !columnIdxes[j].equals(strMatchColumns.get(j)) ){
6959 for(int i = 0 ; i < columnIdxes
7034 setMatchColumn(int[] columnIdxes) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java4527 * @param columnIdxes the index into this rowset
4533 public void unsetMatchColumn(int[] columnIdxes) throws SQLException { argument
4545 * @param columnIdxes the index into this rowset
4551 public void unsetMatchColumn(String[] columnIdxes) throws SQLException { argument
4592 * @param columnIdxes the indexes into this rowset
4599 public void setMatchColumn(int[] columnIdxes) throws SQLException { argument

Completed in 81 milliseconds