Esempio n. 1
0
  /** This gets called when this condition is added to the AndOr tree. */
  void buildTree(WakeupCondition parent, int id, BehaviorRetained b) {
    super.buildTree(parent, id, b);

    for (int i = 0; i < conditions.length; i++) {
      if (conditions[i] != null) {
        conditions[i].buildTree(this, i, b);
      }
    }
  }