All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jclarion.clarion.ClarionNotifyEvent Maven / Gradle / Ivy

The newest version!
package org.jclarion.clarion;

import org.jclarion.clarion.constants.Event;
import org.jclarion.clarion.runtime.CRun;

public class ClarionNotifyEvent extends ClarionEvent
{
    private int code;
    private int thread;
    private int parameter;
    
    public ClarionNotifyEvent(int code,int parameter)
    {
        super(Event.NOTIFY,0,false);
        this.code=code;
        this.parameter=parameter;
        this.thread=CRun.getThreadID();
    }

    public int getCode() {
        return code;
    }

    public int getThread() {
        return thread;
    }

    public int getParameter() {
        return parameter;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy