]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.runtime/src/org/simantics/scl/runtime/chr/Fact.java
Diagram to SVG enhancements
[simantics/platform.git] / bundles / org.simantics.scl.runtime / src / org / simantics / scl / runtime / chr / Fact.java
1 package org.simantics.scl.runtime.chr;
2
3 public interface Fact {
4     /**
5      * Activates the fact with the given priority. The method returns
6      * the new priority of the fact or a negative number if the fact
7      * is deactivated.
8      */
9     int activate(Object context, int priority);
10     boolean isAlive();
11 }