Package de.fuberlin.wiwiss.d2rq.mapgen

Examples of de.fuberlin.wiwiss.d2rq.mapgen.W3CMappingGenerator


   * 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) {
View Full Code Here

TOP

Related Classes of de.fuberlin.wiwiss.d2rq.mapgen.W3CMappingGenerator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.