1 19 20 package org.netbeans.lib.ddl; 21 22 import java.sql.*; 23 import java.util.Set ; 24 import org.netbeans.lib.ddl.*; 25 import org.netbeans.lib.ddl.impl.*; 26 27 36 public interface DriverSpecificationFactory { 37 38 41 public Set supportedDrivers(); 42 43 48 public boolean isDriverSupported(String driverName); 49 50 55 public DriverSpecification createDriverSpecification(String driverName); 56 57 } 58 59 | Popular Tags |