Package jade.domain.mobility
Class MobileAgentSystem
- java.lang.Object
-
- jade.domain.mobility.MobileAgentSystem
-
- All Implemented Interfaces:
Concept,Term,Serializable,Serializable
public class MobileAgentSystem extends Object implements Concept
This class represents themobile-agent-systemconcept.- Version:
- $Date$ $Revision$
- Author:
- Giovanni Rimassa - Universita' di Parma
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MobileAgentSystem()Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDependencies()Retrieve the value of thedependenciesslot of this event, containing the runtime system dependencies of the described agent.LonggetMajorVersion()Retrieve the value of themajor-versionslot of this event, containing the major version number of the runtime system of the described agent.LonggetMinorVersion()Retrieve the value of theminor-versionslot of this event, containing the minor version number of the runtime system of the described agent.StringgetName()Retrieve the value of thenameslot of this action, containing the runtime system of the described agent.voidsetDependencies(String d)Set thedependenciesslot of this action.voidsetMajorVersion(Long v)Set themajor-versionslot of this action.voidsetMinorVersion(Long v)Set theminor-versionslot of this action.voidsetName(String n)Set thenameslot of this action.
-
-
-
Method Detail
-
setName
public void setName(String n)
Set thenameslot of this action.- Parameters:
n- The runtime system of the described agent.
-
getName
public String getName()
Retrieve the value of thenameslot of this action, containing the runtime system of the described agent.- Returns:
- The value of the
nameslot, ornullif no value was set.
-
setMajorVersion
public void setMajorVersion(Long v)
Set themajor-versionslot of this action.- Parameters:
v- The major version number of the runtime system of the described agent.
-
getMajorVersion
public Long getMajorVersion()
Retrieve the value of themajor-versionslot of this event, containing the major version number of the runtime system of the described agent.- Returns:
- The value of the
major-versionslot, ornullif no value was set.
-
setMinorVersion
public void setMinorVersion(Long v)
Set theminor-versionslot of this action.- Parameters:
v- The minor version number of the runtime system of the described agent.
-
getMinorVersion
public Long getMinorVersion()
Retrieve the value of theminor-versionslot of this event, containing the minor version number of the runtime system of the described agent.- Returns:
- The value of the
minor-versionslot, ornullif no value was set.
-
setDependencies
public void setDependencies(String d)
Set thedependenciesslot of this action.- Parameters:
d- The runtime system dependencies of the described agent.
-
getDependencies
public String getDependencies()
Retrieve the value of thedependenciesslot of this event, containing the runtime system dependencies of the described agent.- Returns:
- The value of the
dependenciesslot, ornullif no value was set.
-
-