| org.netbeans.lib.ddl.DriverSpecificationFactory
All known Subclasses: org.netbeans.lib.ddl.impl.SpecificationFactory,
DriverSpecificationFactory | public interface DriverSpecificationFactory (Code) | | The factory interface used for creating instances of DriverSpecification class.
DriverSpecificationFactory collects information about available driver
description files. Then it's able to specify if system can control
the driver (specified by product name). It also provides a list of supported
drivers.
author: Radko Najman |
createDriverSpecification | public DriverSpecification createDriverSpecification(String driverName)(Code) | | Creates instance of DriverSpecification class; a driver-specification
class. This object knows about used driver.
Parameters: driverName - Driver name DriverSpecification object. |
isDriverSupported | public boolean isDriverSupported(String driverName)(Code) | | Returns true if driver (specified by driverName) is
supported by system. Does not throw exception if it doesn't.
Parameters: ddriverName - Driver product name as given from DatabaseMetaData True if driver product is supported. |
supportedDrivers | public Set supportedDrivers()(Code) | | Returns array of driver products supported by system. It returns
string array only, not the DriverSpecification array.
|
|
|