Package jade.domain.introspection
Class KillContainerRequested
- java.lang.Object
-
- jade.domain.introspection.KillContainerRequested
-
- All Implemented Interfaces:
Concept,Term,Event,Serializable,Serializable
public class KillContainerRequested extends Object implements Event
This class represents thekill-container-requestedconcept in thejade-introspectionontology.- Since:
- JADE 3.4
- Author:
- Giovanni Caire - TILAB
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description KillContainerRequested()Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ContainerIDgetContainer()Retrieve the value of thecontainerslot of this event, containing the identifier of the container that is requested to be killed.StringgetName()Retrieve the name of this event.voidsetContainer(ContainerID id)Set thecontainerof this event.
-
-
-
Field Detail
-
NAME
public static final String NAME
A string constant for the name of this event.- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
public String getName()
Retrieve the name of this event.
-
setContainer
public void setContainer(ContainerID id)
Set thecontainerof this event.- Parameters:
id- The container identifier of the container that is requested to be killed.
-
getContainer
public ContainerID getContainer()
Retrieve the value of thecontainerslot of this event, containing the identifier of the container that is requested to be killed.- Returns:
- The value of the
containerslot, ornullif no value was set.
-
-