/**
 * MyRecipe.java
 *
 *
 * Caitlin Ross 
 * 100735219
 */


public class MyRecipe {
	
	private String recipeName = "Molasses Cookies";
	private String contributor = "Caitlin Ross";
	private String rating = "*****";
	private String spices = "Cloves, ginger, cinnamon";
	private String description = "These soft, chewy, spicy cookies are one of the store's most popular. Don't expect them to be crip; they are not gingersnaps. They stay moist, in an airtight tin, for at least a week.";
	private String ingredients = "3/4 cup butter\n1 cup granulated sugar\n1/4 cup molasses\n1 egg\n1 3/4 cups unbleached all-purpose flour\n1/2 tsp ground cloves\n1/2 tsp ground ginger\n1 tsp ground cinnamon\n1/2 tsp salt\n1/2 tsp baking soda";
	private String directions = "1. Preheat oven to 350F\n2. Melt butter, add sugar and molasses, and mix thoroughly. Lightly beat egg and add to butter mixture; blend well.\n3. Sift flour with spices, salt and baking soda, and add to first mixture; mix. Batter will be wet.\n4. Lay a sheet of foil on a cookie sheet. Drop tablespoons of cookie batter on foil, leaving 3 inches between the cookies. These will spread during the baking.\n5. Bake until cookies start to darken, 8 to 10 minutes. Bemove from oven while still soft. Let cool on foil.\nMakes 24 very large flat cookies.";
	
	public String getRecipeName(){ return recipeName;}
	public String getContributor(){ return contributor;}
	public String getRating(){ return rating;}
	public String getSpices(){ return spices;}
	public String getDescription(){ return description;}
	public String getIngredients(){ return ingredients;}
	public String getDirections(){ return directions;}
	
    public MyRecipe() {
    }
    
}