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