| java.lang.Object com.vividsolutions.jump.io.datasource.DataSource
All known Subclasses: com.vividsolutions.jump.io.datasource.ReaderWriterFileDataSource, com.vividsolutions.jump.workbench.ui.plugin.datastore.DataStoreDataSource,
DataSource | abstract public class DataSource (Code) | | A file, database, web service, or other source of data. To be savable to a
project file, a DataSource must not be an anonymous class (because the class
name is recorded in the project file) and it must have a parameterless
constructor (so it can be reconstructed by simply being instantiated and
having #setProperties called).
|
COORDINATE_SYSTEM_KEY | final public static String COORDINATE_SYSTEM_KEY(Code) | | Coordinate-system property, used for files and other DataSources that
have a single CoordinateSystem
|
FILE_KEY | final public static String FILE_KEY(Code) | | Filename property, used for file-based DataSources
|
getConnection | abstract public Connection getConnection()(Code) | | Creates a new Connection to this DataSource.
|
getProperties | public Map getProperties()(Code) | | |
isReadable | public boolean isReadable()(Code) | | |
isWritable | public boolean isWritable()(Code) | | |
setProperties | public void setProperties(Map properties)(Code) | | Sets properties required to open a DataSource, such as username, password,
filename, coordinate system, etc. Called by DataSourceQueryChoosers.
|
|
|