You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
400 B
18 lines
400 B
6 years ago
|
package com.fr.plugin.core;
|
||
|
|
||
|
import com.fr.stable.UrlDriver;
|
||
|
import com.fr.stable.fun.impl.AbstractDialectCreator;
|
||
|
|
||
|
import java.sql.Connection;
|
||
|
|
||
|
public class DialectCreatorImpl extends AbstractDialectCreator {
|
||
|
@Override
|
||
|
public Class<?> generate(UrlDriver urlDriver) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public Class<?> generate(Connection connection) {
|
||
|
return null;
|
||
|
}
|
||
|
}
|