Package javaff.data

Examples of javaff.data.UngroundEffect.effects()


    boolean rEff = false;
    Iterator lit = literals.iterator();
    while (lit.hasNext() && !(rEff))
    {
      UngroundEffect ue = (UngroundEffect) lit.next();
      rEff = ue.effects(ps);
    }
    return rEff;
  }

  public UngroundCondition minus(UngroundEffect effect)
View Full Code Here


  }

  public boolean effects(PredicateSymbol ps)
  {
    UngroundEffect ue = (UngroundEffect) literal;
    return ue.effects(ps);
  }

  public UngroundCondition effectsAdd(UngroundCondition cond)
  {
    return cond;
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.