Package jade.domain.introspection
Class AddedContainer
- java.lang.Object
-
- jade.domain.introspection.AddedContainer
-
- All Implemented Interfaces:
Concept,Term,Event,Serializable,Serializable
public class AddedContainer extends Object implements Event
This class represents theadded-containerconcept in thejade-introspectionontology.- Version:
- $Date$ $Revision$
- Author:
- Giovanni Rimassa - Universita' di Parma
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AddedContainer()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 added container.StringgetName()Retrieve the name of this event.StringgetOwnership()Retrieve the value of theownershipslot of this event, containing the name of the entity owning the newly added container.voidsetContainer(ContainerID id)Set thecontainerof this event.voidsetOwnership(String o)Set theownershipof 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 newly added container.
-
getContainer
public ContainerID getContainer()
Retrieve the value of thecontainerslot of this event, containing the container identifier of the newly added container.- Returns:
- The value of the
containerslot, ornullif no value was set.
-
setOwnership
public void setOwnership(String o)
Set theownershipof this event.- Parameters:
o- The name of the entity owning the newly added container.
-
getOwnership
public String getOwnership()
Retrieve the value of theownershipslot of this event, containing the name of the entity owning the newly added container.- Returns:
- The value of the
ownershipslot, ornullif no value was set.
-
-