d_normalisation_xml2rdffactory.java
来自「normkit is a set of tools supporting ont」· Java 代码 · 共 25 行
JAVA
25 行
package it.itc.ectrl.normkit.dnorm_xml2rdf.api;
import it.itc.ectrl.normkit.common.NormalisationException;
import it.itc.ectrl.normkit.dnorm_xml2rdf.impl.D_Normalisation_XML2RDFImpl;
/**
* The D_Normalisation_XML2RDFFactory class contains only static method to create the D_Normalisation_XML2RDF object. A D_Normalisation_XML2RDF object should be created for each XML document to be transformed.
* @author Oliver Fodor (fodor@itc.it)
*/
public class D_Normalisation_XML2RDFFactory {
/**
* Creates an instance of the D_Normalisation_XML2RDF class and associates it with source, target and governing map documents.
* @param sourceXMLPath physical location of source XML instance file
* @param targetRDFPath physical location for output RDF document
* @param targetOntologyPath physical location of ontology for the target instances
* @param normMapPath physical location of Normalisation Map governing this process
*/
public static D_Normalisation_XML2RDF createD_Normalisation_XML2RDF(String sourceXMLPath, String targetRDFPath, String targetOntologyPath, String normMapPath) throws NormalisationException {
return new D_Normalisation_XML2RDFImpl(sourceXMLPath, targetRDFPath, targetOntologyPath, normMapPath);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?