📄 normalisationheuristic.java
字号:
package it.itc.ectrl.normkit.cnorm.heuristics;
import oracle.xml.parser.schema.*;
import it.itc.ectrl.normkit.cnorm.impl.C_NormalisationImpl;
/**
* Parent class for all normalisation heuristics.
* @author Oliver Fodor (fodor@itc.it)
*/
public abstract class NormalisationHeuristic {
/**
* Associated C-Normalisation process.
*/
C_NormalisationImpl m_c_norm;
/**
* Creates an instance of this class and associates it with a C-Normalisation process.
* @param c_norm C-Normalisation process to be associated with this heuristic
*/
public NormalisationHeuristic(C_NormalisationImpl c_norm) {
m_c_norm = c_norm;
}
/**
* Executes the concept (RDFS entity) extraction procedure defined and implemented by this heuristic.
*/
public void run() throws Exception {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -