Searched refs:WebRowSet (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DFilteredRowSet.java127 public interface FilteredRowSet extends WebRowSet {
H A DRowSetFactory.java88 * <p>Creates a new instance of a WebRowSet.</p>
90 * @return A new instance of a WebRowSet.
92 * @throws SQLException if a WebRowSet cannot
97 public WebRowSet createWebRowSet() throws SQLException;
H A DJoinRowSet.java223 public interface JoinRowSet extends WebRowSet {
H A DWebRowSet.java36 * The standard interface that all implementations of a <code>WebRowSet</code>
43 * The standard WebRowSet XML Schema definition is available at the following
52 * of the <code>WebRowSet</code> interface to ensure interoperability. In addition,
53 * the <code>WebRowSet</code> schema uses specific SQL/XML Schema annotations,
71 * <code>WebRowSet</code> object. The metadata described is closely aligned with the
76 * or last synchronization of the <code>WebRowSet</code> object) and the current
78 * a <code>WebRowSet</code> maintains
82 * <h3>2.0 WebRowSet States</h3>
83 * The following sections demonstrates how a <code>WebRowSet</code> implementation
85 * and to describe the state of a <code>WebRowSet</cod
407 public interface WebRowSet extends CachedRowSet { interface in inherits:CachedRowSet
[all...]
/openjdk7/jdk/src/share/classes/javax/sql/rowset/spi/
H A DXmlReader.java42 * <code>WebRowSet</code> implementations.
45 * XML reader for a <code>WebRowSet</code> by being assigned to the
46 * rowset's <code>xmlReader</code> field. When the <code>WebRowSet</code>
53 * Reads and parses the given <code>WebRowSet</code> object from the given
55 * given <code>WebRowSet</code> object must contain this
62 * @param caller the <code>WebRowSet</code> object to be parsed, whose
71 public void readXML(WebRowSet caller, java.io.Reader reader)
H A DXmlWriter.java42 * <code>WebRowSet</code> implementations.
44 * Writing a <code>WebRowSet</code> object includes printing the
51 * Writes the given <code>WebRowSet</code> object to the specified
56 * The <code>caller</code> parameter must be a <code>WebRowSet</code>
60 * @param caller the <code>WebRowSet</code> instance to be written,
67 * for the given <code>WebRowSet</code> object
69 public void writeXML(WebRowSet caller, java.io.Writer writer)
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DRowSetFactoryImpl.java33 import javax.sql.rowset.WebRowSet;
65 public WebRowSet createWebRowSet() throws SQLException {
H A DWebRowSetImpl.java44 * The standard implementation of the <code>WebRowSet</code> interface. See the interface
49 public class WebRowSetImpl extends CachedRowSetImpl implements WebRowSet {
53 * <code>WebRowSet</code> object will call when the method
54 * <code>WebRowSet.readXml</code> is invoked.
60 * <code>WebRowSet</code> object will call when the method
61 * <code>WebRowSet.writeXml</code> is invoked.
74 * Constructs a new <code>WebRowSet</code> object initialized with the
96 * Constructs a new <code>WebRowSet</code> object initialized with the the
127 * Populates this <code>WebRowSet</code> object with the
147 * Writes this <code>WebRowSet</cod
[all...]
H A DJoinRowSetImpl.java106 * The <code>WebRowSet</code> object that encapsulates this <code>JoinRowSet</code>
107 * object. This <code>WebRowSet</code> object allows this <code>JoinRowSet</code>
108 * object to leverage the properties and methods of a <code>WebRowSet</code>
111 private WebRowSet wrs;
4075 * Creates a new <code>WebRowSet</code> object, populates it with the
4115 * Reads a stream based XML input to populate an <code>WebRowSet</code>
4128 * <code>WebRowSet</code> for XML proceessing
4138 * Creates a new <code>WebRowSet</code> object, populates it with
4154 private WebRowSet createWebRowSet() throws SQLException {
4296 * be used as the basis for populating a <code>WebRowSet</cod
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DWebRowSetXmlReader.java43 * reads and parses an XML formatted <code>WebRowSet</code> object.
61 * Parses the given <code>WebRowSet</code> object, getting its input from
68 * <code>WebRowSet.readXml</code>.
73 * @param caller the <code>WebRowSet</code> object to be parsed, whose
83 public void readXML(WebRowSet caller, java.io.Reader reader) throws SQLException {
138 * Parses the given <code>WebRowSet</code> object, getting its input from
147 * <code>WebRowSet.readXml</code>.
152 * @param caller the <code>WebRowSet</code> object to be parsed, whose
162 public void readXML(WebRowSet caller, java.io.InputStream iStream) throws SQLException {
H A DWebRowSetXmlWriter.java40 * <code>WebRowSet</code> object to an output stream as an XML document.
56 * <code>WebRowSet</code> object as an XML document.
72 * Writes the given <code>WebRowSet</code> object as an XML document
74 * will include the <code>WebRowSet</code> object's data, metadata, and
79 * referenced in the calling <code>WebRowSet</code> object's
83 * @param caller the <code>WebRowSet</code> object to be written; must
93 public void writeXML(WebRowSet caller, java.io.Writer wrt)
103 * Writes the given <code>WebRowSet</code> object as an XML document
105 * will include the <code>WebRowSet</code> object's data, metadata, and
112 * referenced in the calling <code>WebRowSet</cod
[all...]

Completed in 1075 milliseconds