本文整理汇总了Java中de.fuberlin.wiwiss.d2rq.mapgen.W3CMappingGenerator类的典型用法代码示例。如果您正苦于以下问题:Java W3CMappingGenerator类的具体用法?Java W3CMappingGenerator怎么用?Java W3CMappingGenerator使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
W3CMappingGenerator类属于de.fuberlin.wiwiss.d2rq.mapgen包,在下文中一共展示了W3CMappingGenerator类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: openMappingGenerator
import de.fuberlin.wiwiss.d2rq.mapgen.W3CMappingGenerator; //导入依赖的package包/类
/**
* Returns a mapping generator. Needs to be explicitly closed
* using {@link #closeMappingGenerator()}.
*/
public MappingGenerator openMappingGenerator() {
if (generator == null) {
generator = generateDirectMapping ?
new W3CMappingGenerator(getConnectedDB()) :
new MappingGenerator(getConnectedDB());
if (jdbcDriverClass != null) {
generator.setJDBCDriverClass(jdbcDriverClass);
}
if (filter != null) {
generator.setFilter(filter);
}
if (sqlScript != null) {
// If there's a startup SQL script, copy its name into the generated mapping
generator.setStartupSQLScript(new File(sqlScript).toURI());
}
}
return generator;
}