jadex.rules.eca.RuleIntermediateEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-rules-eca Show documentation
Show all versions of jadex-rules-eca Show documentation
Small Java annotation-based event-condition-action rule engine.
package jadex.rules.eca;
/**
* Indicates a rule action intermediate result.
*/
public class RuleIntermediateEvent extends RuleEvent
{
/**
* Create a new RuleIntermediateEvent.
*/
public RuleIntermediateEvent()
{
super();
}
/**
* Create a new RuleIntermediateEvent.
*/
public RuleIntermediateEvent(String rulename, Object result)
{
super(rulename, result);
}
}