jadex.rules.eca.IEvent 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;
/**
* Interface for an event.
*/
public interface IEvent
{
/**
* Get the type.
* @return the type.
*/
public EventType getType();
/**
* Get the content.
* @return the content.
*/
public Object getContent();
}