Examples of APDescription


Examples of jade.domain.FIPAAgentManagement.APDescription

       
        //handle the APDescription provided by the AMS
        handlersTable.put(IntrospectionVocabulary.PLATFORMDESCRIPTION, new EventHandler() {
          public void handle(Event ev) {
            PlatformDescription pd = (PlatformDescription) ev;
            APDescription APdesc = pd.getPlatform();
            myPlatformProfile = APdesc;
            myGui.refreshLocalPlatformName(myPlatformProfile.getName());
          }
        });
       
View Full Code Here

Examples of jade.domain.FIPAAgentManagement.APDescription

  }


  public void addRemotePlatform(AID name,APDescription profile){

    final APDescription desc = profile;
    final AID ams = name;
    Runnable addIt = new Runnable(){

      public void run(){
        tree.treeAgent.addRemotePlatformNode(ams,desc);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.