Package de.tuclausthal.informatik.winf.mobileagents.container

Examples of de.tuclausthal.informatik.winf.mobileagents.container.ContainerListener


   */
  void notifyAgentDead(AgentInfo agent)
  {
    for(int i = 0; i < this.containerListeners.size(); i++)
    {
      ContainerListener l = (ContainerListener)this.containerListeners.get(i);
      l.agentDied(agent);
    }
  }
View Full Code Here

TOP

Related Classes of de.tuclausthal.informatik.winf.mobileagents.container.ContainerListener

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.