normalisationheuristic.java

来自「normkit is a set of tools supporting ont」· Java 代码 · 共 34 行

JAVA
34
字号
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 + =
减小字号Ctrl + -
显示快捷键?