| java.lang.Object com.vividsolutions.jump.io.datasource.DataSourceQuery
DataSourceQuery | public class DataSourceQuery (Code) | | A wrapper for a query string that attributes it with the DataSource
to apply it against.
|
DataSourceQuery | public DataSourceQuery(DataSource dataSource, String query, String name)(Code) | | Constructs a DataSourceQuery that wraps a query string
(implementation-dependent) and a DataSource to apply it against.
Parameters: query - identifies the dataset; may take the form of a SQL statement,a table name, null (if there is only one dataset), or otherformat Parameters: name - will be used for the layer name |
DataSourceQuery | public DataSourceQuery()(Code) | | Parameterless constructor called by Java2XML
|
getDataSource | public DataSource getDataSource()(Code) | | Returns the DataSource against which to apply the
(implementation-dependent) query string.
|
getQuery | public String getQuery()(Code) | | Returns the implementation-dependent query string wrapped by this
DataSourceQuery
|
setDataSource | public void setDataSource(DataSource dataSource)(Code) | | Called by Java2XML
|
setQuery | public void setQuery(String query)(Code) | | Called by Java2XML
|
toString | public String toString()(Code) | | Returns the name of this DataSourceQuery, suitable for use as a layer name.
|
|
|