c_normalisationfactory.java
来自「normkit is a set of tools supporting ont」· Java 代码 · 共 24 行
JAVA
24 行
package it.itc.ectrl.normkit.cnorm.api;
import it.itc.ectrl.normkit.common.NormalisationException;
import it.itc.ectrl.normkit.cnorm.impl.C_NormalisationImpl;
/**
* The C_NormalisationFactory class contains only static method to create the C_Normalisation object. A C_Normalisation object should be created for each XML Schema document.
* @author Oliver Fodor (fodor@itc.it)
*/
public class C_NormalisationFactory {
/**
* Creates an instance of the C_Normalisation engine and associates it with source and target documents.
* @param strSourceXSDPhysicalURI physical location of the source XML Schema
* @param strTargetModelPhysicalURI physical location of the target RDFS conceptual model
* @param strNormMapPhysicalURI physical location of the target Normalisation Map
*/
public static C_Normalisation createC_Normalisation(String strSourceXSDPhysicalURI, String strTargetModelPhysicalURI, String strNormMapPhysicalURI) throws NormalisationException {
return new C_NormalisationImpl(strSourceXSDPhysicalURI, strTargetModelPhysicalURI, strNormMapPhysicalURI);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?