Package org.janusproject.kernel.address

Examples of org.janusproject.kernel.address.AgentAddress


   * @return the leader flag.
   */
  public boolean isLeader(SituatedObject o) {
    if (o instanceof AgentBody) {
      AgentBody body = (AgentBody)o;
      AgentAddress adr = body.getOwner();
      if (adr!=null) {
        String s = LocalizedString.get(Rabbit.class, "LEADER"); //$NON-NLS-1$
        return s!=null && s.equals(adr.getName());
      }
    }
    return false;
  }
View Full Code Here

TOP

Related Classes of org.janusproject.kernel.address.AgentAddress

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.