Examples of AIDGui


Examples of jade.gui.AIDGui

 
    gui.setTab("Federate",null);
 
    DFAgentDescription editedDfd ;
    DFAgentDescription dfd = gui.myAgent.getDescriptionOfThisDF();
    AIDGui insertDlg = new AIDGui(gui);
    insertDlg.setTitle("Insert the AID of the DF with which federate");
    AID parent = insertDlg.ShowAIDGui(null,true,true);
   
    if (parent != null)
    {
      DFAgentDscDlg dlg = new DFAgentDscDlg((Frame) gui);
      //FIXME the AID should not be editable
View Full Code Here

Examples of jade.gui.AIDGui

    public void doAction(AgentTree.ContainerNode node) {

  //  String agentName = JOptionPane.showInputDialog(mainWnd, "Insert the agent local name:");
  String container  = node.getName();
  AIDGui gui = new AIDGui(mainWnd);
  gui.setTitle("Enter the AID for the agent to load");
  AID agentAid = gui.ShowAIDGui(null, true, false);
  if(agentAid != null) {
      myRMA.loadAgent(agentAid, "JADE-DB", container);
  }
    }
View Full Code Here

Examples of jade.gui.AIDGui

     
  }

   public void doAction() {
   
      AIDGui gui = new AIDGui(main);
      gui.setTitle("Insert the remote AMS AID");
      AID remoteAMS = gui.ShowAIDGui(null,true,true);
      try{
        if (remoteAMS != null)
        myRMA.addRemotePlatform(remoteAMS);
           
            }catch(Exception e){e.printStackTrace();}
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.