org.jclarion.clarion.ClarionNotifyEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clarion-runtime Show documentation
Show all versions of clarion-runtime Show documentation
JClarion runtime environment
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