Package jadex.rules.eca
Class RuleEvent
- java.lang.Object
-
- jadex.rules.eca.RuleEvent
-
- Direct Known Subclasses:
RuleIntermediateEvent
public class RuleEvent extends java.lang.ObjectInformation about execution of a rule.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetResult()Get the result.java.lang.StringgetRuleName()Get the ruleName.voidsetResult(java.lang.Object result)Set the result.voidsetRuleName(java.lang.String rulename)Set the ruleName.java.lang.StringtoString()Get the string representation.
-
-
-
Method Detail
-
getRuleName
public java.lang.String getRuleName()
Get the ruleName.- Returns:
- The ruleName.
-
setRuleName
public void setRuleName(java.lang.String rulename)
Set the ruleName.- Parameters:
ruleName- The ruleName to set.
-
getResult
public java.lang.Object getResult()
Get the result.- Returns:
- The result.
-
setResult
public void setResult(java.lang.Object result)
Set the result.- Parameters:
result- The result to set.
-
toString
public java.lang.String toString()
Get the string representation.- Overrides:
toStringin classjava.lang.Object
-
-