📄 d_normalisation_xml2rdffactory.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -