Package jadex.rules.eca
Class RuleEvent
- java.lang.Object
-
- jadex.rules.eca.RuleEvent
-
- Direct Known Subclasses:
RuleIntermediateEvent
public class RuleEvent extends java.lang.Object
Information about execution of a rule.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
getResult()
Get the result.java.lang.String
getRuleName()
Get the ruleName.void
setResult(java.lang.Object result)
Set the result.void
setRuleName(java.lang.String rulename)
Set the ruleName.java.lang.String
toString()
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:
toString
in classjava.lang.Object
-
-