Uses of Class
org.jdesktop.dataset.io.schema.SchemaReaderException

Packages that use SchemaReaderException
org.jdesktop.dataset.io.schema   
org.jdesktop.dataset.util   
 

Uses of SchemaReaderException in org.jdesktop.dataset.io.schema
 

Methods in org.jdesktop.dataset.io.schema that throw SchemaReaderException
 java.util.List<java.lang.String> XMLDataSetSchemaReader.addRelations(DataSet dataSet, java.lang.String... tableNames)
          Adds all DataRelation for the named DataTable to the specified DataSet, as read from the schema which this reader is reading from.
 java.util.List<java.lang.String> JDBCDataSetSchemaReader.addRelations(DataSet dataSet, java.lang.String... tableNames)
          Adds all DataRelation for the named DataTable to the specified DataSet, as read from the schema which this reader is reading from.
 java.util.List<java.lang.String> DataSetSchemaReader.addRelations(DataSet dataSet, java.lang.String... tableNames)
          Adds all DataRelation for the named DataTable to the specified DataSet, as read from the schema which this reader is reading from.
 java.util.List<java.lang.String> XMLDataSetSchemaReader.addTables(DataSet dataSet, java.lang.String... tableNames)
          Appends one or more DataTable to a DataSet from the schema represented by this reader.
 java.util.List<java.lang.String> JDBCDataSetSchemaReader.addTables(DataSet dataSet, java.lang.String... tableNames)
          Appends one or more DataTable to a DataSet from the schema represented by this reader.
 java.util.List<java.lang.String> DataSetSchemaReader.addTables(DataSet dataSet, java.lang.String... tableNames)
          Appends one or more DataTable to a DataSet from the schema represented by this reader.
 DataSet XMLDataSetSchemaReader.readDataSet()
          Instantiates a new DataSet from the InputStream specified in the constructor.
 DataSet JDBCDataSetSchemaReader.readDataSet()
          Instantiates a new DataSet from the JDBCDataConnection specified in the constructor.
 DataSet DataSetSchemaReader.readDataSet()
          Instantiates a new DataSet from the data source specified in the constructor.
 DataSet XMLDataSetSchemaReader.readDataSet(java.lang.String... tableNames)
          Instantiates a new DataSet from the InputStream specified in the implementing class, with the DataSet schema loaded but without data, for the tables and columns given in the tableNames parameter.
 DataSet JDBCDataSetSchemaReader.readDataSet(java.lang.String... tableNames)
          Instantiates a new DataSet from the JDBCDataConnection specified in the constructor, for the tables and columns given in the tableNames parameter.
 DataSet DataSetSchemaReader.readDataSet(java.lang.String... tableNames)
          Instantiates a new DataSet from the data source specified in the implementing class, with the DataSet schema loaded but without data, for the tables and columns given in the tableNames parameter.
 

Constructors in org.jdesktop.dataset.io.schema that throw SchemaReaderException
XMLDataSetSchemaReader(java.io.InputStream xmlInputStream)
          Instantiates a new XMLDataSetSchemaReader for an input stream holding a DataSet schema in XML format.
XMLDataSetSchemaReader(java.io.Reader xmlReader)
          Instantiates a new XMLDataSetSchemaReader for an input stream holding a DataSet schema in XML format.
 

Uses of SchemaReaderException in org.jdesktop.dataset.util
 

Methods in org.jdesktop.dataset.util that throw SchemaReaderException
static DataSet DataSetUtility.readDataSet(DataSetSchemaReader reader)
          Loads a DataSet schema using a schema reader, for all tables and relations declared in the schema.
static DataSet DataSetUtility.readDataSet(DataSetSchemaReader reader, java.lang.String... tableNames)
          Loads a DataSet schema using a schema reader, for the tables listed in the tableNames argument, and their relations.
static DataSet DataSetUtility.readDataSetFromJDBC(JDBCDataConnection jdbcConn)
          Loads a DataSet schema from a JDBC data connection, using JDBC metadata, for all tables and relations declared in the schema.
static DataSet DataSetUtility.readDataSetFromJDBC(JDBCDataConnection jdbcConn, java.lang.String... tableNames)
          Loads a DataSet schema from a JDBC data connection, using JDBC metadata, for the list of tables passed as an argument, and their relations.
static DataSet DataSetUtility.readDataSetFromXml(java.io.InputStream is, java.lang.String... tableNames)
          Loads a DataSet schema from a XML Schema, for all tables and relations declared in the schema.
static DataSet DataSetUtility.readDataSetFromXml(java.io.Reader reader, java.lang.String... tableNames)
          Loads a DataSet schema from a XML Schema, for all tables and relations declared in the schema.
 



Copyright © 2005 Sun Microsystems All Rights Reserved.