d_normalisation_rdf2xmlfactory.java

来自「normkit is a set of tools supporting ont」· Java 代码 · 共 25 行

JAVA
25
字号
package it.itc.ectrl.normkit.dnorm_rdf2xml.api;

import it.itc.ectrl.normkit.common.NormalisationException;
import it.itc.ectrl.normkit.dnorm_rdf2xml.impl.D_Normalisation_RDF2XMLImpl;

/**
 * The D_Normalisation_RDF2XMLFactory class contains only static method  to create the D_Normalisation_RDF2XML object. D_Normalisation_RDF2XML object should be created for each RDF document to be transformed.
 * @author Oliver Fodor (fodor@itc.it)
 */
public class D_Normalisation_RDF2XMLFactory {
    /**
     * Creates an instance of the D_Normalisation_RDF2XML class and associates it with source, target and governing map documents.
     * @param sourceInstancePath physical location of source RDF instance file
     * @param targetXMLPath physical location for output XML document
     * @param sourceOntologyPath physical location of source ontology
     * @param normMapPath physical location of Normalisation Map governing this process
     */
    public static D_Normalisation_RDF2XML createD_Normalisation_RDF2XML(String sourceInstancePath, String targetXMLPath, String sourceOntologyPath,  String targetSchemaPath, String normMapPath) throws NormalisationException {

        return new D_Normalisation_RDF2XMLImpl(sourceInstancePath, targetXMLPath, sourceOntologyPath, targetSchemaPath, normMapPath);

    }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?