예제 #1
0
  // returns recipe that is cooking only and matches the ingredients and
  // cooking time
  public BRecipe getCookRecipe() {
    BRecipe bestRecipe = getBestRecipe(0, 0, false);

    // Check if best recipe is cooking only
    if (bestRecipe != null) {
      if (bestRecipe.isCookingOnly()) {
        return bestRecipe;
      }
    }
    return null;
  }