⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 normalisationheuristic.java

📁 normkit is a set of tools supporting ontology learning. from xml,xsd to rdfs.
💻 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 + -