Examples of CartagoBasicContext


Examples of cartago.util.agent.CartagoBasicContext

    this.roleId = new RoleId(roleName, this);
    this.player = player;
    this.agent = agent;
    this.artId = artId;
//    ctx = staticCtx; // need to align contexts to correctly use artifacts
    ctx = new CartagoBasicContext(roleName, "default");
  }
View Full Code Here

Examples of cartago.util.agent.CartagoBasicContext

    this.roleId = new RoleId(roleName, this);
    this.player = player;
    this.agent = agent;
    this.artId = artId;
//    ctx = staticCtx; // need to align contexts to correctly use artifacts
    ctx = new CartagoBasicContext(roleName, "default");
  }
View Full Code Here

Examples of cartago.util.agent.CartagoBasicContext

  private CartagoBasicContext ctx;
 
  public CartagoBehaviour(Agent a) {
    super(a);
    ctx = new CartagoBasicContext(a.getName(),"default");
  }
View Full Code Here

Examples of cartago.util.agent.CartagoBasicContext

    ctx = new CartagoBasicContext(a.getName(),"default");
  }
 
  public CartagoBehaviour(Agent a, String workspaceName, String workspaceHost) {
    super(a);
    ctx = new CartagoBasicContext(a.getName(), workspaceName, workspaceHost);
 
View Full Code Here

Examples of cartago.util.agent.CartagoBasicContext

  private CartagoBasicContext ctx;
 
  public CartagoOneShotBehaviour(Agent a) {
    super(a);
    ctx = new CartagoBasicContext(a.getName(),"default");
  }
View Full Code Here

Examples of cartago.util.agent.CartagoBasicContext

    ctx = new CartagoBasicContext(a.getName(),"default");
  }
 
  public CartagoOneShotBehaviour(Agent a, String workspaceName, String workspaceHost) {
    super(a);
    ctx = new CartagoBasicContext(a.getName(), workspaceName, workspaceHost);
 
View Full Code Here

Examples of cartago.util.agent.CartagoBasicContext

  private CartagoBasicContext ctx;
 
  public CartagoCyclicBehaviour(Agent a) {
    super(a);
    ctx = new CartagoBasicContext(a.getName(),"default");
  }
View Full Code Here

Examples of cartago.util.agent.CartagoBasicContext

    ctx = new CartagoBasicContext(a.getName(),"default");
  }
 
  public CartagoCyclicBehaviour(Agent a, String workspaceName, String workspaceHost) {
    super(a);
    ctx = new CartagoBasicContext(a.getName(), workspaceName, workspaceHost);
 
View Full Code Here

Examples of cartago.util.agent.CartagoBasicContext

 
  private CartagoBasicContext ctx;
 
  public ArtifactManagerBehaviour(Agent a) {
    super(a);
    ctx = new CartagoBasicContext(a.getName(),"default");
  }
View Full Code Here

Examples of cartago.util.agent.CartagoBasicContext

    ctx = new CartagoBasicContext(a.getName(),"default");
  }
 
  public ArtifactManagerBehaviour(Agent a, String workspaceName, String workspaceHost) {
    super(a);
    ctx = new CartagoBasicContext(a.getName(), workspaceName, workspaceHost);
  }
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.