org.yestech.jmlnitrate.core.KernelWorker.java Source code

Java tutorial

Introduction

Here is the source code for org.yestech.jmlnitrate.core.KernelWorker.java

Source

/*
 * File name:           $RCSfile: $
 *
 * Revision:            $Revision: $
 * Last revised by:     $Author: $
 * Last revision date:  $Date: $
 *
 * Original Author:     Arthur Copeland
 *
 * Licensed using GPL Available - http://opensource.org/licenses/gpl-license.php
 *
 */
package org.yestech.jmlnitrate.core;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

/**
 * This class represents a Thread that can be used by the {@link Kernel} to
 * execute {@link KernelProcess}es.
 *
 * @author Arthur Copeland
 * @version $Revision: 3 $
 *
 */
final public class KernelWorker extends Thread {
    //--------------------------------------------------------------------------
    // S T A T I C   V A R I A B L E S 
    //--------------------------------------------------------------------------
    /**
     * Holds the logger
     */
    final private static Log logger = LogFactory.getLog(KernelWorker.class);

    //--------------------------------------------------------------------------
    // C O N S T R U C T O R S 
    //--------------------------------------------------------------------------
    /**
     * Default Ctor.
     */
    public KernelWorker() {
        super();
    }
}