jdk/test/javax/sql/testng/util/StubJoinRowSetImpl.java
author sundar
Mon, 16 May 2016 14:50:43 +0530
changeset 37951 ce2744a0f1a7
parent 26959 c8b54474e672
permissions -rw-r--r--
8156914: jlink API minor cleanups Reviewed-by: mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26959
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
     1
/*
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
     4
 *
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
     7
 * published by the Free Software Foundation.
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
     8
 *
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    13
 * accompanied this code).
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    14
 *
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    18
 *
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    21
 * questions.
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    22
 */
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    23
package util;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    24
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    25
import java.io.IOException;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    26
import java.io.InputStream;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    27
import java.io.OutputStream;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    28
import java.io.Reader;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    29
import java.io.Writer;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    30
import java.math.BigDecimal;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    31
import java.net.URL;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    32
import java.sql.Array;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    33
import java.sql.Blob;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    34
import java.sql.Clob;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    35
import java.sql.Connection;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    36
import java.sql.Date;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    37
import java.sql.NClob;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    38
import java.sql.Ref;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    39
import java.sql.ResultSet;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    40
import java.sql.ResultSetMetaData;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    41
import java.sql.RowId;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    42
import java.sql.SQLException;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    43
import java.sql.SQLWarning;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    44
import java.sql.SQLXML;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    45
import java.sql.Savepoint;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    46
import java.sql.Statement;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    47
import java.sql.Time;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    48
import java.sql.Timestamp;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    49
import java.util.Calendar;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    50
import java.util.Collection;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    51
import java.util.Map;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    52
import javax.sql.RowSet;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    53
import javax.sql.RowSetEvent;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    54
import javax.sql.RowSetListener;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    55
import javax.sql.RowSetMetaData;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    56
import javax.sql.rowset.CachedRowSet;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    57
import javax.sql.rowset.JoinRowSet;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    58
import javax.sql.rowset.Joinable;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    59
import javax.sql.rowset.RowSetWarning;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    60
import javax.sql.rowset.spi.SyncProvider;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    61
import javax.sql.rowset.spi.SyncProviderException;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    62
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    63
class StubJoinRowSetImpl implements JoinRowSet {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    64
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    65
    public StubJoinRowSetImpl() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    66
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    67
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    68
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    69
    public void addRowSet(Joinable rowset) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    70
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    71
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    72
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    73
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    74
    public void addRowSet(RowSet rowset, int columnIdx) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    75
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    76
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    77
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    78
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    79
    public void addRowSet(RowSet rowset, String columnName) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    80
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    81
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    82
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    83
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    84
    public void addRowSet(RowSet[] rowset, int[] columnIdx) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    85
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    86
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    87
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    88
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    89
    public void addRowSet(RowSet[] rowset, String[] columnName) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    90
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    91
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    92
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    93
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    94
    public Collection<?> getRowSets() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    95
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    96
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    97
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    98
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    99
    public String[] getRowSetNames() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   100
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   101
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   102
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   103
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   104
    public CachedRowSet toCachedRowSet() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   105
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   106
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   107
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   108
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   109
    public boolean supportsCrossJoin() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   110
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   111
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   112
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   113
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   114
    public boolean supportsInnerJoin() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   115
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   116
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   117
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   118
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   119
    public boolean supportsLeftOuterJoin() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   120
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   121
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   122
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   123
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   124
    public boolean supportsRightOuterJoin() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   125
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   126
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   127
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   128
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   129
    public boolean supportsFullJoin() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   130
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   131
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   132
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   133
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   134
    public void setJoinType(int joinType) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   135
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   136
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   137
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   138
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   139
    public String getWhereClause() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   140
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   141
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   142
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   143
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   144
    public int getJoinType() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   145
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   146
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   147
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   148
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   149
    public void readXml(Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   150
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   151
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   152
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   153
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   154
    public void readXml(InputStream iStream) throws SQLException, IOException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   155
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   156
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   157
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   158
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   159
    public void writeXml(ResultSet rs, Writer writer) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   160
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   161
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   162
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   163
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   164
    public void writeXml(ResultSet rs, OutputStream oStream) throws SQLException, IOException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   165
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   166
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   167
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   168
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   169
    public void writeXml(Writer writer) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   170
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   171
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   172
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   173
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   174
    public void writeXml(OutputStream oStream) throws SQLException, IOException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   175
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   176
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   177
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   178
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   179
    public void populate(ResultSet data) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   180
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   181
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   182
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   183
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   184
    public void execute(Connection conn) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   185
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   186
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   187
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   188
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   189
    public void acceptChanges() throws SyncProviderException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   190
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   191
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   192
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   193
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   194
    public void acceptChanges(Connection con) throws SyncProviderException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   195
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   196
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   197
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   198
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   199
    public void restoreOriginal() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   200
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   201
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   202
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   203
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   204
    public void release() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   205
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   206
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   207
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   208
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   209
    public void undoDelete() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   210
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   211
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   212
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   213
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   214
    public void undoInsert() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   215
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   216
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   217
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   218
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   219
    public void undoUpdate() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   220
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   221
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   222
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   223
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   224
    public boolean columnUpdated(int idx) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   225
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   226
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   227
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   228
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   229
    public boolean columnUpdated(String columnName) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   230
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   231
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   232
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   233
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   234
    public Collection<?> toCollection() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   235
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   236
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   237
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   238
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   239
    public Collection<?> toCollection(int column) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   240
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   241
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   242
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   243
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   244
    public Collection<?> toCollection(String column) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   245
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   246
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   247
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   248
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   249
    public SyncProvider getSyncProvider() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   250
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   251
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   252
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   253
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   254
    public void setSyncProvider(String provider) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   255
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   256
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   257
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   258
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   259
    public int size() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   260
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   261
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   262
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   263
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   264
    public void setMetaData(RowSetMetaData md) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   265
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   266
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   267
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   268
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   269
    public ResultSet getOriginal() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   270
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   271
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   272
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   273
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   274
    public ResultSet getOriginalRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   275
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   276
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   277
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   278
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   279
    public void setOriginalRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   280
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   281
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   282
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   283
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   284
    public String getTableName() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   285
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   286
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   287
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   288
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   289
    public void setTableName(String tabName) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   290
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   291
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   292
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   293
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   294
    public int[] getKeyColumns() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   295
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   296
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   297
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   298
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   299
    public void setKeyColumns(int[] keys) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   300
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   301
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   302
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   303
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   304
    public RowSet createShared() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   305
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   306
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   307
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   308
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   309
    public CachedRowSet createCopy() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   310
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   311
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   312
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   313
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   314
    public CachedRowSet createCopySchema() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   315
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   316
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   317
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   318
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   319
    public CachedRowSet createCopyNoConstraints() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   320
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   321
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   322
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   323
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   324
    public RowSetWarning getRowSetWarnings() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   325
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   326
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   327
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   328
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   329
    public boolean getShowDeleted() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   330
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   331
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   332
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   333
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   334
    public void setShowDeleted(boolean b) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   335
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   336
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   337
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   338
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   339
    public void commit() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   340
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   341
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   342
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   343
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   344
    public void rollback() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   345
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   346
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   347
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   348
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   349
    public void rollback(Savepoint s) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   350
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   351
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   352
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   353
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   354
    public void rowSetPopulated(RowSetEvent event, int numRows) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   355
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   356
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   357
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   358
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   359
    public void populate(ResultSet rs, int startRow) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   360
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   361
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   362
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   363
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   364
    public void setPageSize(int size) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   365
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   366
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   367
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   368
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   369
    public int getPageSize() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   370
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   371
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   372
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   373
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   374
    public boolean nextPage() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   375
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   376
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   377
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   378
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   379
    public boolean previousPage() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   380
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   381
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   382
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   383
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   384
    public String getUrl() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   385
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   386
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   387
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   388
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   389
    public void setUrl(String url) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   390
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   391
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   392
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   393
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   394
    public String getDataSourceName() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   395
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   396
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   397
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   398
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   399
    public void setDataSourceName(String name) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   400
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   401
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   402
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   403
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   404
    public String getUsername() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   405
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   406
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   407
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   408
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   409
    public void setUsername(String name) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   410
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   411
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   412
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   413
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   414
    public String getPassword() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   415
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   416
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   417
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   418
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   419
    public void setPassword(String password) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   420
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   421
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   422
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   423
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   424
    public int getTransactionIsolation() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   425
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   426
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   427
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   428
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   429
    public void setTransactionIsolation(int level) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   430
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   431
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   432
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   433
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   434
    public Map<String, Class<?>> getTypeMap() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   435
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   436
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   437
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   438
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   439
    public void setTypeMap(Map<String, Class<?>> map) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   440
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   441
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   442
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   443
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   444
    public String getCommand() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   445
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   446
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   447
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   448
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   449
    public void setCommand(String cmd) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   450
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   451
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   452
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   453
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   454
    public boolean isReadOnly() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   455
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   456
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   457
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   458
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   459
    public void setReadOnly(boolean value) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   460
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   461
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   462
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   463
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   464
    public int getMaxFieldSize() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   465
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   466
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   467
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   468
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   469
    public void setMaxFieldSize(int max) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   470
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   471
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   472
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   473
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   474
    public int getMaxRows() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   475
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   476
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   477
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   478
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   479
    public void setMaxRows(int max) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   480
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   481
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   482
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   483
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   484
    public boolean getEscapeProcessing() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   485
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   486
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   487
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   488
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   489
    public void setEscapeProcessing(boolean enable) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   490
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   491
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   492
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   493
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   494
    public int getQueryTimeout() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   495
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   496
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   497
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   498
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   499
    public void setQueryTimeout(int seconds) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   500
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   501
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   502
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   503
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   504
    public void setType(int type) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   505
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   506
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   507
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   508
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   509
    public void setConcurrency(int concurrency) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   510
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   511
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   512
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   513
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   514
    public void setNull(int parameterIndex, int sqlType) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   515
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   516
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   517
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   518
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   519
    public void setNull(String parameterName, int sqlType) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   520
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   521
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   522
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   523
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   524
    public void setNull(int paramIndex, int sqlType, String typeName) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   525
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   526
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   527
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   528
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   529
    public void setNull(String parameterName, int sqlType, String typeName) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   530
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   531
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   532
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   533
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   534
    public void setBoolean(int parameterIndex, boolean x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   535
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   536
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   537
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   538
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   539
    public void setBoolean(String parameterName, boolean x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   540
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   541
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   542
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   543
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   544
    public void setByte(int parameterIndex, byte x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   545
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   546
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   547
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   548
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   549
    public void setByte(String parameterName, byte x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   550
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   551
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   552
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   553
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   554
    public void setShort(int parameterIndex, short x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   555
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   556
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   557
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   558
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   559
    public void setShort(String parameterName, short x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   560
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   561
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   562
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   563
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   564
    public void setInt(int parameterIndex, int x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   565
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   566
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   567
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   568
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   569
    public void setInt(String parameterName, int x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   570
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   571
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   572
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   573
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   574
    public void setLong(int parameterIndex, long x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   575
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   576
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   577
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   578
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   579
    public void setLong(String parameterName, long x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   580
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   581
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   582
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   583
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   584
    public void setFloat(int parameterIndex, float x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   585
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   586
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   587
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   588
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   589
    public void setFloat(String parameterName, float x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   590
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   591
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   592
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   593
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   594
    public void setDouble(int parameterIndex, double x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   595
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   596
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   597
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   598
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   599
    public void setDouble(String parameterName, double x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   600
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   601
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   602
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   603
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   604
    public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   605
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   606
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   607
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   608
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   609
    public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   610
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   611
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   612
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   613
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   614
    public void setString(int parameterIndex, String x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   615
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   616
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   617
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   618
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   619
    public void setString(String parameterName, String x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   620
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   621
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   622
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   623
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   624
    public void setBytes(int parameterIndex, byte[] x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   625
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   626
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   627
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   628
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   629
    public void setBytes(String parameterName, byte[] x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   630
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   631
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   632
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   633
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   634
    public void setDate(int parameterIndex, Date x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   635
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   636
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   637
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   638
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   639
    public void setTime(int parameterIndex, Time x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   640
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   641
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   642
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   643
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   644
    public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   645
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   646
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   647
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   648
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   649
    public void setTimestamp(String parameterName, Timestamp x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   650
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   651
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   652
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   653
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   654
    public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   655
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   656
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   657
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   658
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   659
    public void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   660
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   661
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   662
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   663
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   664
    public void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   665
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   666
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   667
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   668
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   669
    public void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   670
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   671
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   672
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   673
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   674
    public void setCharacterStream(int parameterIndex, Reader reader, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   675
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   676
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   677
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   678
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   679
    public void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   680
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   681
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   682
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   683
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   684
    public void setAsciiStream(int parameterIndex, InputStream x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   685
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   686
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   687
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   688
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   689
    public void setAsciiStream(String parameterName, InputStream x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   690
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   691
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   692
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   693
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   694
    public void setBinaryStream(int parameterIndex, InputStream x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   695
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   696
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   697
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   698
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   699
    public void setBinaryStream(String parameterName, InputStream x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   700
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   701
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   702
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   703
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   704
    public void setCharacterStream(int parameterIndex, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   705
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   706
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   707
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   708
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   709
    public void setCharacterStream(String parameterName, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   710
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   711
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   712
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   713
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   714
    public void setNCharacterStream(int parameterIndex, Reader value) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   715
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   716
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   717
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   718
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   719
    public void setObject(int parameterIndex, Object x, int targetSqlType, int scaleOrLength) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   720
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   721
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   722
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   723
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   724
    public void setObject(String parameterName, Object x, int targetSqlType, int scale) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   725
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   726
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   727
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   728
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   729
    public void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   730
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   731
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   732
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   733
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   734
    public void setObject(String parameterName, Object x, int targetSqlType) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   735
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   736
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   737
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   738
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   739
    public void setObject(String parameterName, Object x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   740
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   741
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   742
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   743
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   744
    public void setObject(int parameterIndex, Object x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   745
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   746
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   747
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   748
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   749
    public void setRef(int i, Ref x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   750
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   751
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   752
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   753
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   754
    public void setBlob(int i, Blob x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   755
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   756
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   757
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   758
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   759
    public void setBlob(int parameterIndex, InputStream inputStream, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   760
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   761
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   762
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   763
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   764
    public void setBlob(int parameterIndex, InputStream inputStream) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   765
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   766
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   767
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   768
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   769
    public void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   770
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   771
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   772
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   773
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   774
    public void setBlob(String parameterName, Blob x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   775
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   776
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   777
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   778
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   779
    public void setBlob(String parameterName, InputStream inputStream) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   780
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   781
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   782
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   783
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   784
    public void setClob(int i, Clob x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   785
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   786
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   787
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   788
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   789
    public void setClob(int parameterIndex, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   790
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   791
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   792
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   793
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   794
    public void setClob(int parameterIndex, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   795
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   796
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   797
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   798
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   799
    public void setClob(String parameterName, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   800
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   801
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   802
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   803
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   804
    public void setClob(String parameterName, Clob x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   805
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   806
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   807
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   808
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   809
    public void setClob(String parameterName, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   810
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   811
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   812
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   813
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   814
    public void setArray(int i, Array x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   815
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   816
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   817
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   818
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   819
    public void setDate(int parameterIndex, Date x, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   820
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   821
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   822
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   823
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   824
    public void setDate(String parameterName, Date x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   825
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   826
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   827
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   828
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   829
    public void setDate(String parameterName, Date x, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   830
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   831
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   832
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   833
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   834
    public void setTime(int parameterIndex, Time x, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   835
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   836
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   837
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   838
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   839
    public void setTime(String parameterName, Time x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   840
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   841
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   842
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   843
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   844
    public void setTime(String parameterName, Time x, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   845
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   846
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   847
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   848
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   849
    public void setTimestamp(int parameterIndex, Timestamp x, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   850
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   851
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   852
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   853
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   854
    public void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   855
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   856
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   857
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   858
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   859
    public void clearParameters() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   860
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   861
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   862
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   863
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   864
    public void execute() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   865
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   866
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   867
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   868
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   869
    public void addRowSetListener(RowSetListener listener) {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   870
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   871
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   872
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   873
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   874
    public void removeRowSetListener(RowSetListener listener) {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   875
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   876
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   877
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   878
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   879
    public void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   880
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   881
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   882
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   883
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   884
    public void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   885
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   886
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   887
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   888
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   889
    public void setRowId(int parameterIndex, RowId x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   890
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   891
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   892
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   893
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   894
    public void setRowId(String parameterName, RowId x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   895
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   896
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   897
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   898
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   899
    public void setNString(int parameterIndex, String value) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   900
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   901
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   902
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   903
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   904
    public void setNString(String parameterName, String value) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   905
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   906
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   907
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   908
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   909
    public void setNCharacterStream(int parameterIndex, Reader value, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   910
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   911
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   912
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   913
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   914
    public void setNCharacterStream(String parameterName, Reader value, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   915
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   916
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   917
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   918
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   919
    public void setNCharacterStream(String parameterName, Reader value) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   920
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   921
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   922
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   923
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   924
    public void setNClob(String parameterName, NClob value) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   925
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   926
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   927
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   928
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   929
    public void setNClob(String parameterName, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   930
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   931
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   932
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   933
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   934
    public void setNClob(String parameterName, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   935
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   936
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   937
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   938
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   939
    public void setNClob(int parameterIndex, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   940
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   941
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   942
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   943
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   944
    public void setNClob(int parameterIndex, NClob value) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   945
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   946
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   947
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   948
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   949
    public void setNClob(int parameterIndex, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   950
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   951
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   952
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   953
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   954
    public void setURL(int parameterIndex, URL x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   955
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   956
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   957
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   958
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   959
    public boolean next() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   960
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   961
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   962
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   963
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   964
    public void close() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   965
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   966
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   967
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   968
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   969
    public boolean wasNull() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   970
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   971
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   972
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   973
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   974
    public String getString(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   975
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   976
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   977
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   978
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   979
    public boolean getBoolean(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   980
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   981
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   982
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   983
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   984
    public byte getByte(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   985
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   986
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   987
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   988
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   989
    public short getShort(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   990
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   991
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   992
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   993
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   994
    public int getInt(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   995
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   996
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   997
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   998
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   999
    public long getLong(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1000
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1001
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1002
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1003
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1004
    public float getFloat(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1005
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1006
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1007
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1008
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1009
    public double getDouble(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1010
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1011
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1012
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1013
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1014
    public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1015
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1016
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1017
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1018
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1019
    public byte[] getBytes(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1020
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1021
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1022
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1023
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1024
    public Date getDate(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1025
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1026
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1027
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1028
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1029
    public Time getTime(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1030
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1031
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1032
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1033
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1034
    public Timestamp getTimestamp(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1035
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1036
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1037
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1038
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1039
    public InputStream getAsciiStream(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1040
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1041
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1042
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1043
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1044
    public InputStream getUnicodeStream(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1045
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1046
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1047
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1048
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1049
    public InputStream getBinaryStream(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1050
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1051
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1052
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1053
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1054
    public String getString(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1055
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1056
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1057
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1058
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1059
    public boolean getBoolean(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1060
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1061
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1062
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1063
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1064
    public byte getByte(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1065
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1066
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1067
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1068
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1069
    public short getShort(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1070
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1071
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1072
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1073
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1074
    public int getInt(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1075
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1076
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1077
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1078
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1079
    public long getLong(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1080
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1081
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1082
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1083
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1084
    public float getFloat(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1085
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1086
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1087
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1088
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1089
    public double getDouble(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1090
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1091
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1092
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1093
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1094
    public BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1095
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1096
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1097
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1098
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1099
    public byte[] getBytes(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1100
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1101
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1102
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1103
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1104
    public Date getDate(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1105
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1106
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1107
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1108
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1109
    public Time getTime(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1110
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1111
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1112
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1113
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1114
    public Timestamp getTimestamp(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1115
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1116
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1117
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1118
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1119
    public InputStream getAsciiStream(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1120
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1121
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1122
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1123
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1124
    public InputStream getUnicodeStream(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1125
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1126
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1127
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1128
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1129
    public InputStream getBinaryStream(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1130
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1131
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1132
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1133
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1134
    public SQLWarning getWarnings() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1135
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1136
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1137
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1138
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1139
    public void clearWarnings() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1140
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1141
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1142
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1143
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1144
    public String getCursorName() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1145
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1146
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1147
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1148
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1149
    public ResultSetMetaData getMetaData() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1150
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1151
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1152
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1153
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1154
    public Object getObject(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1155
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1156
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1157
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1158
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1159
    public Object getObject(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1160
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1161
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1162
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1163
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1164
    public int findColumn(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1165
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1166
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1167
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1168
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1169
    public Reader getCharacterStream(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1170
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1171
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1172
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1173
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1174
    public Reader getCharacterStream(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1175
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1176
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1177
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1178
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1179
    public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1180
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1181
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1182
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1183
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1184
    public BigDecimal getBigDecimal(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1185
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1186
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1187
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1188
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1189
    public boolean isBeforeFirst() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1190
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1191
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1192
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1193
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1194
    public boolean isAfterLast() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1195
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1196
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1197
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1198
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1199
    public boolean isFirst() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1200
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1201
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1202
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1203
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1204
    public boolean isLast() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1205
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1206
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1207
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1208
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1209
    public void beforeFirst() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1210
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1211
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1212
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1213
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1214
    public void afterLast() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1215
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1216
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1217
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1218
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1219
    public boolean first() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1220
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1221
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1222
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1223
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1224
    public boolean last() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1225
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1226
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1227
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1228
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1229
    public int getRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1230
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1231
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1232
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1233
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1234
    public boolean absolute(int row) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1235
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1236
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1237
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1238
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1239
    public boolean relative(int rows) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1240
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1241
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1242
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1243
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1244
    public boolean previous() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1245
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1246
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1247
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1248
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1249
    public void setFetchDirection(int direction) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1250
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1251
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1252
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1253
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1254
    public int getFetchDirection() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1255
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1256
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1257
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1258
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1259
    public void setFetchSize(int rows) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1260
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1261
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1262
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1263
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1264
    public int getFetchSize() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1265
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1266
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1267
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1268
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1269
    public int getType() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1270
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1271
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1272
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1273
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1274
    public int getConcurrency() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1275
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1276
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1277
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1278
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1279
    public boolean rowUpdated() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1280
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1281
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1282
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1283
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1284
    public boolean rowInserted() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1285
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1286
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1287
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1288
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1289
    public boolean rowDeleted() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1290
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1291
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1292
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1293
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1294
    public void updateNull(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1295
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1296
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1297
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1298
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1299
    public void updateBoolean(int columnIndex, boolean x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1300
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1301
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1302
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1303
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1304
    public void updateByte(int columnIndex, byte x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1305
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1306
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1307
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1308
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1309
    public void updateShort(int columnIndex, short x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1310
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1311
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1312
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1313
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1314
    public void updateInt(int columnIndex, int x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1315
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1316
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1317
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1318
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1319
    public void updateLong(int columnIndex, long x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1320
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1321
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1322
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1323
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1324
    public void updateFloat(int columnIndex, float x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1325
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1326
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1327
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1328
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1329
    public void updateDouble(int columnIndex, double x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1330
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1331
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1332
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1333
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1334
    public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1335
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1336
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1337
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1338
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1339
    public void updateString(int columnIndex, String x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1340
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1341
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1342
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1343
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1344
    public void updateBytes(int columnIndex, byte[] x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1345
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1346
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1347
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1348
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1349
    public void updateDate(int columnIndex, Date x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1350
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1351
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1352
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1353
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1354
    public void updateTime(int columnIndex, Time x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1355
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1356
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1357
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1358
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1359
    public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1360
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1361
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1362
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1363
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1364
    public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1365
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1366
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1367
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1368
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1369
    public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1370
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1371
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1372
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1373
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1374
    public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1375
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1376
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1377
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1378
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1379
    public void updateObject(int columnIndex, Object x, int scaleOrLength) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1380
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1381
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1382
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1383
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1384
    public void updateObject(int columnIndex, Object x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1385
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1386
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1387
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1388
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1389
    public void updateNull(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1390
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1391
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1392
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1393
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1394
    public void updateBoolean(String columnLabel, boolean x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1395
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1396
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1397
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1398
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1399
    public void updateByte(String columnLabel, byte x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1400
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1401
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1402
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1403
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1404
    public void updateShort(String columnLabel, short x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1405
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1406
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1407
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1408
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1409
    public void updateInt(String columnLabel, int x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1410
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1411
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1412
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1413
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1414
    public void updateLong(String columnLabel, long x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1415
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1416
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1417
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1418
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1419
    public void updateFloat(String columnLabel, float x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1420
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1421
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1422
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1423
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1424
    public void updateDouble(String columnLabel, double x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1425
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1426
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1427
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1428
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1429
    public void updateBigDecimal(String columnLabel, BigDecimal x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1430
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1431
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1432
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1433
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1434
    public void updateString(String columnLabel, String x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1435
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1436
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1437
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1438
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1439
    public void updateBytes(String columnLabel, byte[] x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1440
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1441
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1442
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1443
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1444
    public void updateDate(String columnLabel, Date x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1445
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1446
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1447
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1448
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1449
    public void updateTime(String columnLabel, Time x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1450
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1451
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1452
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1453
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1454
    public void updateTimestamp(String columnLabel, Timestamp x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1455
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1456
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1457
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1458
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1459
    public void updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1460
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1461
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1462
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1463
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1464
    public void updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1465
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1466
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1467
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1468
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1469
    public void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1470
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1471
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1472
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1473
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1474
    public void updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1475
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1476
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1477
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1478
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1479
    public void updateObject(String columnLabel, Object x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1480
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1481
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1482
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1483
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1484
    public void insertRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1485
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1486
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1487
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1488
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1489
    public void updateRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1490
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1491
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1492
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1493
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1494
    public void deleteRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1495
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1496
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1497
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1498
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1499
    public void refreshRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1500
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1501
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1502
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1503
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1504
    public void cancelRowUpdates() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1505
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1506
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1507
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1508
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1509
    public void moveToInsertRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1510
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1511
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1512
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1513
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1514
    public void moveToCurrentRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1515
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1516
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1517
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1518
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1519
    public Statement getStatement() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1520
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1521
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1522
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1523
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1524
    public Object getObject(int columnIndex, Map<String, Class<?>> map) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1525
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1526
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1527
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1528
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1529
    public Ref getRef(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1530
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1531
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1532
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1533
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1534
    public Blob getBlob(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1535
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1536
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1537
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1538
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1539
    public Clob getClob(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1540
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1541
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1542
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1543
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1544
    public Array getArray(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1545
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1546
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1547
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1548
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1549
    public Object getObject(String columnLabel, Map<String, Class<?>> map) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1550
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1551
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1552
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1553
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1554
    public Ref getRef(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1555
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1556
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1557
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1558
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1559
    public Blob getBlob(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1560
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1561
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1562
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1563
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1564
    public Clob getClob(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1565
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1566
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1567
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1568
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1569
    public Array getArray(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1570
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1571
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1572
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1573
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1574
    public Date getDate(int columnIndex, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1575
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1576
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1577
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1578
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1579
    public Date getDate(String columnLabel, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1580
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1581
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1582
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1583
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1584
    public Time getTime(int columnIndex, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1585
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1586
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1587
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1588
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1589
    public Time getTime(String columnLabel, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1590
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1591
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1592
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1593
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1594
    public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1595
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1596
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1597
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1598
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1599
    public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1600
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1601
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1602
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1603
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1604
    public URL getURL(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1605
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1606
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1607
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1608
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1609
    public URL getURL(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1610
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1611
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1612
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1613
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1614
    public void updateRef(int columnIndex, Ref x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1615
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1616
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1617
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1618
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1619
    public void updateRef(String columnLabel, Ref x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1620
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1621
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1622
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1623
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1624
    public void updateBlob(int columnIndex, Blob x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1625
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1626
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1627
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1628
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1629
    public void updateBlob(String columnLabel, Blob x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1630
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1631
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1632
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1633
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1634
    public void updateClob(int columnIndex, Clob x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1635
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1636
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1637
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1638
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1639
    public void updateClob(String columnLabel, Clob x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1640
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1641
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1642
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1643
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1644
    public void updateArray(int columnIndex, Array x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1645
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1646
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1647
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1648
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1649
    public void updateArray(String columnLabel, Array x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1650
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1651
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1652
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1653
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1654
    public RowId getRowId(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1655
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1656
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1657
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1658
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1659
    public RowId getRowId(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1660
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1661
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1662
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1663
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1664
    public void updateRowId(int columnIndex, RowId x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1665
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1666
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1667
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1668
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1669
    public void updateRowId(String columnLabel, RowId x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1670
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1671
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1672
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1673
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1674
    public int getHoldability() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1675
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1676
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1677
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1678
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1679
    public boolean isClosed() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1680
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1681
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1682
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1683
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1684
    public void updateNString(int columnIndex, String nString) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1685
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1686
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1687
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1688
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1689
    public void updateNString(String columnLabel, String nString) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1690
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1691
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1692
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1693
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1694
    public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1695
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1696
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1697
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1698
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1699
    public void updateNClob(String columnLabel, NClob nClob) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1700
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1701
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1702
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1703
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1704
    public NClob getNClob(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1705
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1706
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1707
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1708
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1709
    public NClob getNClob(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1710
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1711
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1712
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1713
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1714
    public SQLXML getSQLXML(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1715
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1716
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1717
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1718
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1719
    public SQLXML getSQLXML(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1720
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1721
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1722
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1723
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1724
    public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1725
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1726
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1727
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1728
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1729
    public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1730
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1731
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1732
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1733
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1734
    public String getNString(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1735
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1736
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1737
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1738
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1739
    public String getNString(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1740
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1741
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1742
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1743
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1744
    public Reader getNCharacterStream(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1745
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1746
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1747
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1748
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1749
    public Reader getNCharacterStream(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1750
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1751
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1752
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1753
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1754
    public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1755
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1756
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1757
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1758
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1759
    public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1760
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1761
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1762
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1763
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1764
    public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1765
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1766
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1767
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1768
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1769
    public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1770
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1771
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1772
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1773
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1774
    public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1775
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1776
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1777
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1778
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1779
    public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1780
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1781
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1782
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1783
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1784
    public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1785
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1786
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1787
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1788
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1789
    public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1790
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1791
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1792
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1793
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1794
    public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1795
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1796
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1797
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1798
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1799
    public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1800
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1801
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1802
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1803
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1804
    public void updateClob(int columnIndex, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1805
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1806
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1807
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1808
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1809
    public void updateClob(String columnLabel, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1810
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1811
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1812
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1813
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1814
    public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1815
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1816
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1817
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1818
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1819
    public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1820
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1821
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1822
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1823
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1824
    public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1825
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1826
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1827
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1828
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1829
    public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1830
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1831
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1832
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1833
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1834
    public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1835
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1836
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1837
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1838
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1839
    public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1840
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1841
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1842
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1843
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1844
    public void updateCharacterStream(int columnIndex, Reader x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1845
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1846
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1847
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1848
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1849
    public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1850
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1851
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1852
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1853
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1854
    public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1855
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1856
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1857
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1858
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1859
    public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1860
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1861
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1862
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1863
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1864
    public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1865
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1866
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1867
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1868
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1869
    public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1870
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1871
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1872
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1873
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1874
    public void updateClob(int columnIndex, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1875
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1876
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1877
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1878
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1879
    public void updateClob(String columnLabel, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1880
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1881
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1882
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1883
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1884
    public void updateNClob(int columnIndex, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1885
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1886
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1887
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1888
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1889
    public void updateNClob(String columnLabel, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1890
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1891
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1892
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1893
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1894
    public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1895
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1896
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1897
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1898
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1899
    public <T> T getObject(String columnLabel, Class<T> type) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1900
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1901
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1902
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1903
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1904
    public <T> T unwrap(Class<T> iface) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1905
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1906
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1907
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1908
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1909
    public boolean isWrapperFor(Class<?> iface) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1910
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1911
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1912
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1913
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1914
    public void setMatchColumn(int columnIdx) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1915
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1916
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1917
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1918
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1919
    public void setMatchColumn(int[] columnIdxes) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1920
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1921
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1922
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1923
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1924
    public void setMatchColumn(String columnName) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1925
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1926
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1927
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1928
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1929
    public void setMatchColumn(String[] columnNames) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1930
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1931
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1932
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1933
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1934
    public int[] getMatchColumnIndexes() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1935
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1936
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1937
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1938
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1939
    public String[] getMatchColumnNames() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1940
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1941
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1942
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1943
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1944
    public void unsetMatchColumn(int columnIdx) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1945
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1946
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1947
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1948
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1949
    public void unsetMatchColumn(int[] columnIdxes) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1950
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1951
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1952
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1953
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1954
    public void unsetMatchColumn(String columnName) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1955
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1956
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1957
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1958
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1959
    public void unsetMatchColumn(String[] columnName) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1960
        throw new UnsupportedOperationException("Not supported yet.");
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1961
    }
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1962
}