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