jdk/test/javax/sql/testng/util/StubWebRowSetImpl.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.RowSetWarning;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    58
import javax.sql.rowset.WebRowSet;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    59
import javax.sql.rowset.spi.SyncProvider;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    60
import javax.sql.rowset.spi.SyncProviderException;
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    61
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    62
public class StubWebRowSetImpl implements WebRowSet {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    63
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    64
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    65
    public void readXml(Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    66
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    69
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    70
    public void readXml(InputStream iStream) throws SQLException, IOException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    71
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    74
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    75
    public void writeXml(ResultSet rs, Writer writer) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    76
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    79
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    80
    public void writeXml(ResultSet rs, OutputStream oStream) throws SQLException, IOException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    81
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    84
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    85
    public void writeXml(Writer writer) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    86
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    89
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    90
    public void writeXml(OutputStream oStream) throws SQLException, IOException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    91
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    94
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    95
    public void populate(ResultSet data) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    96
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
    99
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   100
    public void execute(Connection conn) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   101
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   104
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   105
    public void acceptChanges() throws SyncProviderException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   106
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   109
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   110
    public void acceptChanges(Connection con) throws SyncProviderException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   111
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   114
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   115
    public void restoreOriginal() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   116
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   119
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   120
    public void release() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   121
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   124
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   125
    public void undoDelete() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   126
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   129
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   130
    public void undoInsert() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   131
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   134
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   135
    public void undoUpdate() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   136
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   139
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   140
    public boolean columnUpdated(int idx) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   141
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   144
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   145
    public boolean columnUpdated(String columnName) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   146
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   149
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   150
    public Collection<?> toCollection() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   151
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   154
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   155
    public Collection<?> toCollection(int column) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   156
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   159
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   160
    public Collection<?> toCollection(String column) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   161
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   164
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   165
    public SyncProvider getSyncProvider() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   166
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   169
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   170
    public void setSyncProvider(String provider) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   171
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   174
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   175
    public int size() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   176
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   179
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   180
    public void setMetaData(RowSetMetaData md) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   181
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   184
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   185
    public ResultSet getOriginal() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   186
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   189
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   190
    public ResultSet getOriginalRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   191
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   194
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   195
    public void setOriginalRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   196
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   199
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   200
    public String getTableName() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   201
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   204
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   205
    public void setTableName(String tabName) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   206
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   209
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   210
    public int[] getKeyColumns() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   211
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   214
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   215
    public void setKeyColumns(int[] keys) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   216
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   219
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   220
    public RowSet createShared() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   221
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   224
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   225
    public CachedRowSet createCopy() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   226
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   229
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   230
    public CachedRowSet createCopySchema() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   231
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   234
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   235
    public CachedRowSet createCopyNoConstraints() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   236
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   239
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   240
    public RowSetWarning getRowSetWarnings() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   241
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   244
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   245
    public boolean getShowDeleted() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   246
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   249
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   250
    public void setShowDeleted(boolean b) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   251
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   254
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   255
    public void commit() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   256
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   259
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   260
    public void rollback() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   261
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   264
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   265
    public void rollback(Savepoint s) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   266
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   269
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   270
    public void rowSetPopulated(RowSetEvent event, int numRows) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   271
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   274
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   275
    public void populate(ResultSet rs, int startRow) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   276
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   279
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   280
    public void setPageSize(int size) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   281
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   284
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   285
    public int getPageSize() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   286
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   289
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   290
    public boolean nextPage() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   291
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   294
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   295
    public boolean previousPage() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   296
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   299
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   300
    public String getUrl() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   301
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   304
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   305
    public void setUrl(String url) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   306
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   309
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   310
    public String getDataSourceName() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   311
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   314
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   315
    public void setDataSourceName(String name) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   316
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   319
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   320
    public String getUsername() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   321
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   324
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   325
    public void setUsername(String name) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   326
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   329
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   330
    public String getPassword() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   331
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   334
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   335
    public void setPassword(String password) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   336
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   339
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   340
    public int getTransactionIsolation() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   341
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   344
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   345
    public void setTransactionIsolation(int level) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   346
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   349
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   350
    public Map<String, Class<?>> getTypeMap() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   351
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   354
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   355
    public void setTypeMap(Map<String, Class<?>> map) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   356
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   359
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   360
    public String getCommand() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   361
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   364
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   365
    public void setCommand(String cmd) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   366
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   369
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   370
    public boolean isReadOnly() {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   371
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   374
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   375
    public void setReadOnly(boolean value) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   376
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   379
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   380
    public int getMaxFieldSize() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   381
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   384
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   385
    public void setMaxFieldSize(int max) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   386
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   389
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   390
    public int getMaxRows() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   391
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   394
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   395
    public void setMaxRows(int max) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   396
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   399
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   400
    public boolean getEscapeProcessing() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   401
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   404
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   405
    public void setEscapeProcessing(boolean enable) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   406
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   409
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   410
    public int getQueryTimeout() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   411
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   414
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   415
    public void setQueryTimeout(int seconds) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   416
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   419
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   420
    public void setType(int type) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   421
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   424
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   425
    public void setConcurrency(int concurrency) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   426
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   429
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   430
    public void setNull(int parameterIndex, int sqlType) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   431
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   434
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   435
    public void setNull(String parameterName, int sqlType) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   436
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   439
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   440
    public void setNull(int paramIndex, int sqlType, String typeName) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   441
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   444
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   445
    public void setNull(String parameterName, int sqlType, String typeName) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   446
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   449
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   450
    public void setBoolean(int parameterIndex, boolean x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   451
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   454
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   455
    public void setBoolean(String parameterName, boolean x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   456
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   459
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   460
    public void setByte(int parameterIndex, byte x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   461
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   464
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   465
    public void setByte(String parameterName, byte x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   466
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   469
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   470
    public void setShort(int parameterIndex, short x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   471
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   474
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   475
    public void setShort(String parameterName, short x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   476
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   479
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   480
    public void setInt(int parameterIndex, int x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   481
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   484
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   485
    public void setInt(String parameterName, int x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   486
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   489
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   490
    public void setLong(int parameterIndex, long x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   491
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   494
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   495
    public void setLong(String parameterName, long x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   496
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   499
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   500
    public void setFloat(int parameterIndex, float x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   501
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   504
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   505
    public void setFloat(String parameterName, float x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   506
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   509
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   510
    public void setDouble(int parameterIndex, double x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   511
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   514
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   515
    public void setDouble(String parameterName, double x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   516
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   519
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   520
    public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   521
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   524
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   525
    public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   526
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   529
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   530
    public void setString(int parameterIndex, String x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   531
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   534
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   535
    public void setString(String parameterName, String x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   536
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   539
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   540
    public void setBytes(int parameterIndex, byte[] x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   541
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   544
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   545
    public void setBytes(String parameterName, byte[] x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   546
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   549
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   550
    public void setDate(int parameterIndex, Date x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   551
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   554
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   555
    public void setTime(int parameterIndex, Time x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   556
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   559
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   560
    public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   561
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   564
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   565
    public void setTimestamp(String parameterName, Timestamp x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   566
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   569
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   570
    public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   571
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   574
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   575
    public void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   576
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   579
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   580
    public void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   581
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   584
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   585
    public void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   586
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   589
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   590
    public void setCharacterStream(int parameterIndex, Reader reader, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   591
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   594
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   595
    public void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   596
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   599
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   600
    public void setAsciiStream(int parameterIndex, InputStream x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   601
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   604
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   605
    public void setAsciiStream(String parameterName, InputStream x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   606
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   609
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   610
    public void setBinaryStream(int parameterIndex, InputStream x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   611
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   614
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   615
    public void setBinaryStream(String parameterName, InputStream x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   616
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   619
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   620
    public void setCharacterStream(int parameterIndex, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   621
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   624
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   625
    public void setCharacterStream(String parameterName, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   626
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   629
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   630
    public void setNCharacterStream(int parameterIndex, Reader value) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   631
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   634
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   635
    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
   636
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   639
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   640
    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
   641
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   644
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   645
    public void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   646
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   649
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   650
    public void setObject(String parameterName, Object x, int targetSqlType) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   651
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   654
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   655
    public void setObject(String parameterName, Object x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   656
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   659
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   660
    public void setObject(int parameterIndex, Object x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   661
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   664
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   665
    public void setRef(int i, Ref x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   666
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   669
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   670
    public void setBlob(int i, Blob x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   671
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   674
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   675
    public void setBlob(int parameterIndex, InputStream inputStream, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   676
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   679
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   680
    public void setBlob(int parameterIndex, InputStream inputStream) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   681
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   684
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   685
    public void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   686
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   689
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   690
    public void setBlob(String parameterName, Blob x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   691
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   694
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   695
    public void setBlob(String parameterName, InputStream inputStream) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   696
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   699
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   700
    public void setClob(int i, Clob x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   701
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   704
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   705
    public void setClob(int parameterIndex, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   706
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   709
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   710
    public void setClob(int parameterIndex, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   711
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   714
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   715
    public void setClob(String parameterName, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   716
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   719
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   720
    public void setClob(String parameterName, Clob x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   721
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   724
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   725
    public void setClob(String parameterName, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   726
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   729
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   730
    public void setArray(int i, Array x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   731
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   734
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   735
    public void setDate(int parameterIndex, Date x, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   736
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   739
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   740
    public void setDate(String parameterName, Date x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   741
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   744
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   745
    public void setDate(String parameterName, Date x, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   746
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   749
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   750
    public void setTime(int parameterIndex, Time x, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   751
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   754
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   755
    public void setTime(String parameterName, Time x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   756
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   759
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   760
    public void setTime(String parameterName, Time x, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   761
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   764
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   765
    public void setTimestamp(int parameterIndex, Timestamp x, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   766
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   769
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   770
    public void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   771
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   774
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   775
    public void clearParameters() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   776
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   779
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   780
    public void execute() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   781
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   784
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   785
    public void addRowSetListener(RowSetListener listener) {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   786
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   789
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   790
    public void removeRowSetListener(RowSetListener listener) {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   791
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   794
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   795
    public void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   796
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   799
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   800
    public void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   801
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   804
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   805
    public void setRowId(int parameterIndex, RowId x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   806
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   809
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   810
    public void setRowId(String parameterName, RowId x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   811
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   814
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   815
    public void setNString(int parameterIndex, String value) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   816
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   819
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   820
    public void setNString(String parameterName, String value) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   821
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   824
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   825
    public void setNCharacterStream(int parameterIndex, Reader value, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   826
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   829
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   830
    public void setNCharacterStream(String parameterName, Reader value, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   831
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   834
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   835
    public void setNCharacterStream(String parameterName, Reader value) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   836
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   839
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   840
    public void setNClob(String parameterName, NClob value) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   841
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   844
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   845
    public void setNClob(String parameterName, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   846
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   849
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   850
    public void setNClob(String parameterName, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   851
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   854
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   855
    public void setNClob(int parameterIndex, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   856
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   859
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   860
    public void setNClob(int parameterIndex, NClob value) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   861
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   864
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   865
    public void setNClob(int parameterIndex, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   866
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   869
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   870
    public void setURL(int parameterIndex, URL x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   871
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   874
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   875
    public boolean next() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   876
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   879
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   880
    public void close() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   881
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   884
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   885
    public boolean wasNull() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   886
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   889
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   890
    public String getString(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   891
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   894
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   895
    public boolean getBoolean(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   896
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   899
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   900
    public byte getByte(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   901
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   904
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   905
    public short getShort(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   906
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   909
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   910
    public int getInt(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   911
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   914
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   915
    public long getLong(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   916
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   919
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   920
    public float getFloat(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   921
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   924
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   925
    public double getDouble(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   926
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   929
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   930
    public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   931
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   934
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   935
    public byte[] getBytes(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   936
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   939
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   940
    public Date getDate(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   941
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   944
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   945
    public Time getTime(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   946
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   949
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   950
    public Timestamp getTimestamp(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   951
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   954
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   955
    public InputStream getAsciiStream(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   956
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   959
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   960
    public InputStream getUnicodeStream(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   961
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   964
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   965
    public InputStream getBinaryStream(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   966
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   969
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   970
    public String getString(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   971
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   974
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   975
    public boolean getBoolean(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   976
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   979
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   980
    public byte getByte(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   981
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   984
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   985
    public short getShort(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   986
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   989
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   990
    public int getInt(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   991
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   994
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   995
    public long getLong(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   996
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
   999
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1000
    public float getFloat(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1001
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1004
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1005
    public double getDouble(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1006
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1009
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1010
    public BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1011
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1014
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1015
    public byte[] getBytes(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1016
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1019
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1020
    public Date getDate(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1021
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1024
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1025
    public Time getTime(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1026
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1029
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1030
    public Timestamp getTimestamp(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1031
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1034
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1035
    public InputStream getAsciiStream(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1036
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1039
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1040
    public InputStream getUnicodeStream(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1041
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1044
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1045
    public InputStream getBinaryStream(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1046
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1049
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1050
    public SQLWarning getWarnings() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1051
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1054
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1055
    public void clearWarnings() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1056
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1059
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1060
    public String getCursorName() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1061
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1064
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1065
    public ResultSetMetaData getMetaData() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1066
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1069
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1070
    public Object getObject(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1071
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1074
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1075
    public Object getObject(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1076
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1079
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1080
    public int findColumn(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1081
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1084
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1085
    public Reader getCharacterStream(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1086
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1089
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1090
    public Reader getCharacterStream(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1091
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1094
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1095
    public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1096
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1099
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1100
    public BigDecimal getBigDecimal(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1101
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1104
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1105
    public boolean isBeforeFirst() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1106
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1109
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1110
    public boolean isAfterLast() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1111
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1114
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1115
    public boolean isFirst() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1116
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1119
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1120
    public boolean isLast() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1121
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1124
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1125
    public void beforeFirst() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1126
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1129
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1130
    public void afterLast() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1131
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1134
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1135
    public boolean first() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1136
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1139
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1140
    public boolean last() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1141
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1144
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1145
    public int getRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1146
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1149
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1150
    public boolean absolute(int row) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1151
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1154
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1155
    public boolean relative(int rows) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1156
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1159
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1160
    public boolean previous() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1161
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1164
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1165
    public void setFetchDirection(int direction) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1166
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1169
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1170
    public int getFetchDirection() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1171
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1174
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1175
    public void setFetchSize(int rows) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1176
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1179
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1180
    public int getFetchSize() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1181
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1184
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1185
    public int getType() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1186
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1189
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1190
    public int getConcurrency() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1191
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1194
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1195
    public boolean rowUpdated() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1196
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1199
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1200
    public boolean rowInserted() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1201
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1204
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1205
    public boolean rowDeleted() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1206
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1209
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1210
    public void updateNull(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1211
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1214
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1215
    public void updateBoolean(int columnIndex, boolean x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1216
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1219
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1220
    public void updateByte(int columnIndex, byte x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1221
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1224
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1225
    public void updateShort(int columnIndex, short x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1226
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1229
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1230
    public void updateInt(int columnIndex, int x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1231
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1234
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1235
    public void updateLong(int columnIndex, long x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1236
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1239
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1240
    public void updateFloat(int columnIndex, float x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1241
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1244
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1245
    public void updateDouble(int columnIndex, double x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1246
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1249
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1250
    public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1251
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1254
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1255
    public void updateString(int columnIndex, String x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1256
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1259
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1260
    public void updateBytes(int columnIndex, byte[] x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1261
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1264
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1265
    public void updateDate(int columnIndex, Date x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1266
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1269
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1270
    public void updateTime(int columnIndex, Time x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1271
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1274
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1275
    public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1276
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1279
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1280
    public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1281
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1284
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1285
    public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1286
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1289
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1290
    public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1291
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1294
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1295
    public void updateObject(int columnIndex, Object x, int scaleOrLength) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1296
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1299
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1300
    public void updateObject(int columnIndex, Object x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1301
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1304
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1305
    public void updateNull(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1306
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1309
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1310
    public void updateBoolean(String columnLabel, boolean x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1311
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1314
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1315
    public void updateByte(String columnLabel, byte x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1316
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1319
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1320
    public void updateShort(String columnLabel, short x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1321
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1324
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1325
    public void updateInt(String columnLabel, int x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1326
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1329
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1330
    public void updateLong(String columnLabel, long x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1331
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1334
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1335
    public void updateFloat(String columnLabel, float x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1336
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1339
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1340
    public void updateDouble(String columnLabel, double x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1341
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1344
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1345
    public void updateBigDecimal(String columnLabel, BigDecimal x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1346
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1349
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1350
    public void updateString(String columnLabel, String x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1351
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1354
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1355
    public void updateBytes(String columnLabel, byte[] x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1356
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1359
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1360
    public void updateDate(String columnLabel, Date x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1361
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1364
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1365
    public void updateTime(String columnLabel, Time x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1366
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1369
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1370
    public void updateTimestamp(String columnLabel, Timestamp x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1371
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1374
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1375
    public void updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1376
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1379
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1380
    public void updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1381
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1384
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1385
    public void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1386
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1389
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1390
    public void updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1391
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1394
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1395
    public void updateObject(String columnLabel, Object x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1396
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1399
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1400
    public void insertRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1401
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1404
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1405
    public void updateRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1406
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1409
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1410
    public void deleteRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1411
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1414
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1415
    public void refreshRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1416
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1419
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1420
    public void cancelRowUpdates() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1421
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1424
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1425
    public void moveToInsertRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1426
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1429
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1430
    public void moveToCurrentRow() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1431
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1434
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1435
    public Statement getStatement() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1436
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1439
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1440
    public Object getObject(int columnIndex, Map<String, Class<?>> map) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1441
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1444
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1445
    public Ref getRef(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1446
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1449
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1450
    public Blob getBlob(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1451
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1454
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1455
    public Clob getClob(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1456
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1459
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1460
    public Array getArray(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1461
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1464
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1465
    public Object getObject(String columnLabel, Map<String, Class<?>> map) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1466
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1469
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1470
    public Ref getRef(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1471
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1474
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1475
    public Blob getBlob(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1476
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1479
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1480
    public Clob getClob(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1481
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1484
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1485
    public Array getArray(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1486
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1489
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1490
    public Date getDate(int columnIndex, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1491
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1494
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1495
    public Date getDate(String columnLabel, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1496
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1499
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1500
    public Time getTime(int columnIndex, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1501
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1504
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1505
    public Time getTime(String columnLabel, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1506
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1509
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1510
    public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1511
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1514
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1515
    public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1516
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1519
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1520
    public URL getURL(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1521
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1524
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1525
    public URL getURL(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1526
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1529
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1530
    public void updateRef(int columnIndex, Ref x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1531
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1534
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1535
    public void updateRef(String columnLabel, Ref x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1536
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1539
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1540
    public void updateBlob(int columnIndex, Blob x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1541
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1544
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1545
    public void updateBlob(String columnLabel, Blob x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1546
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1549
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1550
    public void updateClob(int columnIndex, Clob x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1551
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1554
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1555
    public void updateClob(String columnLabel, Clob x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1556
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1559
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1560
    public void updateArray(int columnIndex, Array x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1561
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1564
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1565
    public void updateArray(String columnLabel, Array x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1566
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1569
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1570
    public RowId getRowId(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1571
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1574
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1575
    public RowId getRowId(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1576
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1579
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1580
    public void updateRowId(int columnIndex, RowId x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1581
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1584
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1585
    public void updateRowId(String columnLabel, RowId x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1586
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1589
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1590
    public int getHoldability() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1591
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1594
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1595
    public boolean isClosed() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1596
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1599
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1600
    public void updateNString(int columnIndex, String nString) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1601
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1604
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1605
    public void updateNString(String columnLabel, String nString) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1606
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1609
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1610
    public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1611
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1614
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1615
    public void updateNClob(String columnLabel, NClob nClob) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1616
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1619
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1620
    public NClob getNClob(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1621
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1624
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1625
    public NClob getNClob(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1626
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1629
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1630
    public SQLXML getSQLXML(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1631
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1634
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1635
    public SQLXML getSQLXML(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1636
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1639
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1640
    public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1641
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1644
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1645
    public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1646
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1649
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1650
    public String getNString(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1651
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1654
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1655
    public String getNString(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1656
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1659
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1660
    public Reader getNCharacterStream(int columnIndex) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1661
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1664
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1665
    public Reader getNCharacterStream(String columnLabel) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1666
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1669
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1670
    public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1671
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1674
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1675
    public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1676
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1679
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1680
    public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1681
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1684
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1685
    public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1686
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1689
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1690
    public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1691
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1694
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1695
    public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1696
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1699
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1700
    public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1701
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1704
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1705
    public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1706
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1709
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1710
    public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1711
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1714
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1715
    public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1716
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1719
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1720
    public void updateClob(int columnIndex, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1721
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1724
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1725
    public void updateClob(String columnLabel, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1726
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1729
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1730
    public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1731
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1734
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1735
    public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1736
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1739
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1740
    public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1741
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1744
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1745
    public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1746
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1749
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1750
    public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1751
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1754
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1755
    public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1756
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1759
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1760
    public void updateCharacterStream(int columnIndex, Reader x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1761
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1764
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1765
    public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1766
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1769
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1770
    public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1771
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1774
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1775
    public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1776
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1779
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1780
    public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1781
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1784
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1785
    public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1786
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1789
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1790
    public void updateClob(int columnIndex, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1791
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1794
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1795
    public void updateClob(String columnLabel, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1796
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1799
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1800
    public void updateNClob(int columnIndex, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1801
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1804
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1805
    public void updateNClob(String columnLabel, Reader reader) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1806
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1809
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1810
    public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1811
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1814
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1815
    public <T> T getObject(String columnLabel, Class<T> type) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1816
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1819
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1820
    public <T> T unwrap(Class<T> iface) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1821
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1824
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1825
    public boolean isWrapperFor(Class<?> iface) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1826
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1829
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1830
    public void setMatchColumn(int columnIdx) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1831
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1834
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1835
    public void setMatchColumn(int[] columnIdxes) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1836
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1839
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1840
    public void setMatchColumn(String columnName) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1841
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1844
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1845
    public void setMatchColumn(String[] columnNames) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1846
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1849
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1850
    public int[] getMatchColumnIndexes() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1851
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1854
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1855
    public String[] getMatchColumnNames() throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1856
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1859
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1860
    public void unsetMatchColumn(int columnIdx) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1861
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1864
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1865
    public void unsetMatchColumn(int[] columnIdxes) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1866
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1869
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1870
    public void unsetMatchColumn(String columnName) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1871
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1874
    @Override
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1875
    public void unsetMatchColumn(String[] columnName) throws SQLException {
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1876
        throw new UnsupportedOperationException("Not supported yet.");
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
c8b54474e672 8059570: Addition of tests for RowSetFactory and RowSetProvider
lancea
parents:
diff changeset
  1879
}