@Override
  public int getClausesCount() {
    int theCount = 0;
    for (EventCondition theCondition : getConditions()) {
      theCount += theCondition.getClausesCount();
    }

    return theCount;
  }