I am totally lost with Java, I’ve tired and still finding itdifficult to understand. Can you please assist me? I’ve insertedwhat I have for SteppingStone5 and the test.
package ingredient;
import java.util.Scanner;
import java.util.ArrayList;
/**
*
* @ksamuel
*/
import java.util.Scanner;
import java.util.ArrayList;
public class SteppingStone5_Recipe {
private String recipeName=””;
private int servings = 0; // number of people recipe willfeed
ArrayList recipeIngredients;
private int totalRecipeCalories = 0;
/**
* Add mutators and accessors for the class variable.
*
*/
/**
* @return the recipeName
*/
public String getrecipeName() {
return recipeName;
}
/**
* @param recipeName the recipeName to set
*/
public void setrecipeName(String recipeName) {
this.recipeName = recipeName;
}
/**
* @return the servings
*/
public int getservings() {
return servings;
}
/**
* @param servings the servings to set
*/
public void setservings(int servings) {
this.servings = servings;
}
/**
*