Package cartago.util.agent

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


    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

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

    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

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

    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

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

    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

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

    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

Related Classes of cartago.util.agent.CartagoBasicContext

Copyright © 2018 www.massapicom. 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.