jdk/src/share/classes/com/sun/rowset/internal/WebRowSetXmlReader.java
author never
Mon, 12 Jul 2010 22:27:18 -0700
changeset 5926 a36f90d986b6
parent 5506 202f599c92aa
child 6530 bfb7b294dd14
permissions -rw-r--r--
6968385: malformed xml in sweeper logging Reviewed-by: kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3843
diff changeset
     2
 * Copyright (c) 2003, 2006, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3843
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3843
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3843
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3843
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3843
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package com.sun.rowset.internal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.sql.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import javax.sql.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import org.xml.sax.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import org.xml.sax.helpers.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import javax.xml.parsers.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import com.sun.rowset.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.text.MessageFormat;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import javax.sql.rowset.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import javax.sql.rowset.spi.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * An implementation of the <code>XmlReader</code> interface, which
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * reads and parses an XML formatted <code>WebRowSet</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * This implementation uses an <code>org.xml.sax.Parser</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * as its parser.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
public class WebRowSetXmlReader implements XmlReader, Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
3843
b582759a6e99 6737212: Fixed javadoc warning messages in RowSet classes
lancea
parents: 2
diff changeset
    49
b582759a6e99 6737212: Fixed javadoc warning messages in RowSet classes
lancea
parents: 2
diff changeset
    50
    private JdbcRowSetResourceBundle resBundle;
b582759a6e99 6737212: Fixed javadoc warning messages in RowSet classes
lancea
parents: 2
diff changeset
    51
b582759a6e99 6737212: Fixed javadoc warning messages in RowSet classes
lancea
parents: 2
diff changeset
    52
    public WebRowSetXmlReader(){
b582759a6e99 6737212: Fixed javadoc warning messages in RowSet classes
lancea
parents: 2
diff changeset
    53
        try {
b582759a6e99 6737212: Fixed javadoc warning messages in RowSet classes
lancea
parents: 2
diff changeset
    54
           resBundle = JdbcRowSetResourceBundle.getJdbcRowSetResourceBundle();
b582759a6e99 6737212: Fixed javadoc warning messages in RowSet classes
lancea
parents: 2
diff changeset
    55
        } catch(IOException ioe) {
b582759a6e99 6737212: Fixed javadoc warning messages in RowSet classes
lancea
parents: 2
diff changeset
    56
            throw new RuntimeException(ioe);
b582759a6e99 6737212: Fixed javadoc warning messages in RowSet classes
lancea
parents: 2
diff changeset
    57
        }
b582759a6e99 6737212: Fixed javadoc warning messages in RowSet classes
lancea
parents: 2
diff changeset
    58
    }
b582759a6e99 6737212: Fixed javadoc warning messages in RowSet classes
lancea
parents: 2
diff changeset
    59
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * Parses the given <code>WebRowSet</code> object, getting its input from
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * the given <code>java.io.Reader</code> object.  The parser will send
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * notifications of parse events to the rowset's
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * <code>XmlReaderDocHandler</code>, which will build the rowset as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * an XML document.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * This method is called internally by the method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * <code>WebRowSet.readXml</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * If a parsing error occurs, the exception thrown will include
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * information for locating the error in the original XML document.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * @param caller the <code>WebRowSet</code> object to be parsed, whose
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     *        <code>xmlReader</code> field must contain a reference to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     *        this <code>XmlReader</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * @param reader the <code>java.io.Reader</code> object from which
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     *        the parser will get its input
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * @exception SQLException if a database access error occurs or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     *            this <code>WebRowSetXmlReader</code> object is not the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     *            reader for the given rowset
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * @see XmlReaderContentHandler
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    public void readXML(WebRowSet caller, java.io.Reader reader) throws SQLException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            // Crimson Parser(as in J2SE 1.4.1 is NOT able to handle
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
            // Reader(s)(FileReader).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
            //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            // But getting the file as a Stream works fine. So we are going to take
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            // the reader but send it as a InputStream to the parser. Note that this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            // functionality needs to work against any parser
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            // Crimson(J2SE 1.4.x) / Xerces(J2SE 1.5.x).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            InputSource is = new InputSource(reader);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            DefaultHandler dh = new XmlErrorHandler();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            XmlReaderContentHandler hndr = new XmlReaderContentHandler((RowSet)caller);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            SAXParserFactory factory = SAXParserFactory.newInstance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            factory.setNamespaceAware(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            factory.setValidating(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            SAXParser parser = factory.newSAXParser() ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            parser.setProperty(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                               "http://java.sun.com/xml/jaxp/properties/schemaLanguage", "http://www.w3.org/2001/XMLSchema");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            XMLReader reader1 = parser.getXMLReader() ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            reader1.setEntityResolver(new XmlResolver());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
            reader1.setContentHandler(hndr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            reader1.setErrorHandler(dh);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            reader1.parse(is);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        } catch (SAXParseException err) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            System.out.println (MessageFormat.format(resBundle.handleGetObject("wrsxmlreader.parseerr").toString(), new Object[]{ err.getMessage (), err.getLineNumber(), err.getSystemId()}));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            err.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            throw new SQLException(err.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        } catch (SAXException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            Exception   x = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
            if (e.getException () != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
                x = e.getException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            x.printStackTrace ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            throw new SQLException(x.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        // Will be here if trying to write beyond the RowSet limits
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
         catch (ArrayIndexOutOfBoundsException aie) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
              throw new SQLException(resBundle.handleGetObject("wrsxmlreader.invalidcp").toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        catch (Throwable e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            throw new SQLException(MessageFormat.format(resBundle.handleGetObject("wrsxmlreader.readxml").toString() , e.getMessage()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * Parses the given <code>WebRowSet</code> object, getting its input from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * the given <code>java.io.InputStream</code> object.  The parser will send
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * notifications of parse events to the rowset's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * <code>XmlReaderDocHandler</code>, which will build the rowset as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * an XML document.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * Using streams is a much faster way than using <code>java.io.Reader</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * This method is called internally by the method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * <code>WebRowSet.readXml</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * If a parsing error occurs, the exception thrown will include
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * information for locating the error in the original XML document.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * @param caller the <code>WebRowSet</code> object to be parsed, whose
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     *        <code>xmlReader</code> field must contain a reference to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     *        this <code>XmlReader</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * @param iStream the <code>java.io.InputStream</code> object from which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     *        the parser will get its input
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * @throws SQLException if a database access error occurs or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     *            this <code>WebRowSetXmlReader</code> object is not the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     *            reader for the given rowset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * @see XmlReaderContentHandler
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    public void readXML(WebRowSet caller, java.io.InputStream iStream) throws SQLException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            InputSource is = new InputSource(iStream);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
            DefaultHandler dh = new XmlErrorHandler();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
            XmlReaderContentHandler hndr = new XmlReaderContentHandler((RowSet)caller);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
            SAXParserFactory factory = SAXParserFactory.newInstance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            factory.setNamespaceAware(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
            factory.setValidating(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            SAXParser parser = factory.newSAXParser() ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
            parser.setProperty("http://java.sun.com/xml/jaxp/properties/schemaLanguage",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                     "http://www.w3.org/2001/XMLSchema");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            XMLReader reader1 = parser.getXMLReader() ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            reader1.setEntityResolver(new XmlResolver());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            reader1.setContentHandler(hndr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            reader1.setErrorHandler(dh);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            reader1.parse(is);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        } catch (SAXParseException err) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            System.out.println (MessageFormat.format(resBundle.handleGetObject("wrsxmlreader.parseerr").toString(), new Object[]{err.getLineNumber(), err.getSystemId() }));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            System.out.println("   " + err.getMessage ());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            err.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            throw new SQLException(err.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        } catch (SAXException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
            Exception   x = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            if (e.getException () != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
                x = e.getException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            x.printStackTrace ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
            throw new SQLException(x.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        // Will be here if trying to write beyond the RowSet limits
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
         catch (ArrayIndexOutOfBoundsException aie) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
              throw new SQLException(resBundle.handleGetObject("wrsxmlreader.invalidcp").toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        catch (Throwable e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
            throw new SQLException(MessageFormat.format(resBundle.handleGetObject("wrsxmlreader.readxml").toString() , e.getMessage()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * For code coverage purposes only right now
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    public void readData(RowSetInternal caller) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
}