Package jade.domain.introspection
Class RemovedContainer
- java.lang.Object
-
- jade.domain.introspection.RemovedContainer
-
- All Implemented Interfaces:
Concept,Term,Event,Serializable,Serializable
public class RemovedContainer extends Object implements Event
An introspection event, recording the removal of an agent container within the platform.- Version:
- $Date$ $Revision$
- Author:
- Giovanni Rimassa - Universita' di Parma
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RemovedContainer()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 container identifier of the newly removed container.StringgetName()Retrieve the name of this event.voidsetContainer(ContainerID id)Set thecontainerslot of 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 thecontainerslot of this event.- Parameters:
id- The container identifier of the newly removed container.
-
getContainer
public ContainerID getContainer()
Retrieve the value of thecontainerslot of this event, containing the container identifier of the newly removed container.- Returns:
- The value of the
containerslot, ornullif no value was set.
-
-