Package jade.domain.mobility
Class MobileAgentProfile
- java.lang.Object
-
- jade.domain.mobility.MobileAgentProfile
-
- All Implemented Interfaces:
Concept,Term,Serializable,Serializable
public class MobileAgentProfile extends Object implements Concept
This class represents themobile-agent-profileconcept.- Version:
- $Date$ $Revision$
- Author:
- Giovanni Rimassa - Universita' di Parma
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MobileAgentProfile()Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MobileAgentLanguagegetLanguage()Retrieve the value of thelanguageslot of this action, containing the language of the described agent.MobileAgentOSgetOS()Retrieve the value of theosslot of this action, containing the OS of the described agent.MobileAgentSystemgetSystem()Retrieve the value of thesystemslot of this action, containing the runtime system of the described agent.voidsetLanguage(MobileAgentLanguage l)Set thelanguageslot of this action.voidsetOS(MobileAgentOS o)Set theosslot of this action.voidsetSystem(MobileAgentSystem s)Set thesystemslot of this action.
-
-
-
Method Detail
-
setSystem
public void setSystem(MobileAgentSystem s)
Set thesystemslot of this action.- Parameters:
s- The runtime system of the described agent.
-
getSystem
public MobileAgentSystem getSystem()
Retrieve the value of thesystemslot of this action, containing the runtime system of the described agent.- Returns:
- The value of the
systemslot, ornullif no value was set.
-
setLanguage
public void setLanguage(MobileAgentLanguage l)
Set thelanguageslot of this action.- Parameters:
l- The language of the described agent.
-
getLanguage
public MobileAgentLanguage getLanguage()
Retrieve the value of thelanguageslot of this action, containing the language of the described agent.- Returns:
- The value of the
languageslot, ornullif no value was set.
-
setOS
public void setOS(MobileAgentOS o)
Set theosslot of this action.- Parameters:
o- The OS of the described agent.
-
getOS
public MobileAgentOS getOS()
Retrieve the value of theosslot of this action, containing the OS of the described agent.- Returns:
- The value of the
osslot, ornullif no value was set.
-
-