Package jade.content

Examples of jade.content.AgentAction


    // Properly handle the SL action, done and result operators
    if (ce instanceof Action) {
      return (AgentAction) ((Action) ce).getAction();
    }
    else if (ce instanceof Done) {
      AgentAction act = (AgentAction) ((Done) ce).getAction();
      if (act instanceof Action) {
        return (AgentAction) ((Action) act).getAction();
      }
      else {
        return act;
      }
    }
    else if (ce instanceof Result) {
      AgentAction act = (AgentAction) ((Result) ce).getAction();
      if (act instanceof Action) {
        return (AgentAction) ((Action) act).getAction();
      }
      else {
        return act;
View Full Code Here

TOP

Related Classes of jade.content.AgentAction

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.