Package jadex.platform.service.ecarules
Class ARulebaseEvent
- java.lang.Object
-
- jadex.platform.service.ecarules.ARulebaseEvent
-
- All Implemented Interfaces:
IRulebaseEvent
- Direct Known Subclasses:
FinishedEvent
,RuleAddedEvent
,RuleRemovedEvent
public abstract class ARulebaseEvent extends java.lang.Object implements IRulebaseEvent
-
-
Constructor Summary
Constructors Constructor Description ARulebaseEvent()
Create a new rule event.ARulebaseEvent(int callid)
Create a new rule event.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ARulebaseEvent
createCopy()
int
getCallId()
Get the callid.int
getId()
Get the id.void
setCallId(int callid)
Set the callid.void
setFinished(IBackwardCommandFuture fut)
void
setId(int id)
Set the id.
-
-
-
Method Detail
-
setFinished
public void setFinished(IBackwardCommandFuture fut)
-
getId
public int getId()
Get the id. return The id.
-
setId
public void setId(int id)
Set the id.- Parameters:
id
- The id to set.
-
getCallId
public int getCallId()
Get the callid.- Returns:
- The callid.
-
setCallId
public void setCallId(int callid)
Set the callid.- Parameters:
callid
- The callid to set.
-
createCopy
public ARulebaseEvent createCopy()
-
-