Serialized Form
-
Package com.xffffff.wellfed.ingredient
-
Class com.xffffff.wellfed.ingredient.Ingredient extends java.lang.Object implements Serializable
-
Serialized Fields
-
amount
java.lang.Double amount
Holds the number of items in an Ingredient -
category
java.lang.String category
Holds the category of an Ingredient. -
description
java.lang.String description
Holds the description of an Ingredient. This can also be considered to be a title. -
id
java.lang.String id
Holds the database ID of an Ingredient -
unit
java.lang.String unit
Holds the units that an amount of an Ingredient is in
-
-
-
-
Package com.xffffff.wellfed.mealplan
-
Class com.xffffff.wellfed.mealplan.MealPlan extends java.lang.Object implements Serializable
-
Serialized Fields
-
category
java.lang.String category
Holds the category of a MealPlan. Note that a MealPlan has only one category, unlike Recipe and Ingredient. -
eatDate
java.util.Date eatDate
Holds the date that a MealPlan is planned to be eaten on. -
id
java.lang.String id
Holds the Database id of a Recipe -
ingredients
java.util.ArrayList<Ingredient> ingredients
Holds a list of all Ingredients in a MealPlan. -
recipes
java.util.ArrayList<Recipe> recipes
Holds a list of all Recipes in a MealPlan. -
servings
java.lang.Long servings
Holds the number of servings that a MealPlan serves. Any recipes should be scaled up to fit this number. -
title
java.lang.String title
Holds the title of a MealPlan.
-
-
-
Class com.xffffff.wellfed.mealplan.MealPlanProxy extends MealPlan implements Serializable
-
-
Package com.xffffff.wellfed.recipe
-
Class com.xffffff.wellfed.recipe.Recipe extends java.lang.Object implements Serializable
-
Serialized Fields
-
category
java.lang.String category
Holds the category (aka tag) of a Recipe. -
comments
java.lang.String comments
Holds the user comments on a Recipe. -
id
java.lang.String id
Holds the Database id of a Recipe -
ingredients
java.util.List<Ingredient> ingredients
Holds the Ingredients needed for a Recipe. -
photograph
java.lang.String photograph
Holds a photograph of the result of a Recipe. -
prepTimeMinutes
java.lang.Long prepTimeMinutes
Holds the prep time in minutes for a Recipe. -
servings
java.lang.Long servings
Holds the number of servings that a Recipe makes. -
title
java.lang.String title
Holds the title of a Recipe.
-
-
-
-
Package com.xffffff.wellfed.shoppingcart
-
Class com.xffffff.wellfed.shoppingcart.ShoppingCartIngredient extends Ingredient implements Serializable
-
Serialized Fields
-
isComplete
boolean isComplete
Holds whether the ShoppingCartIngredient has all of its fields completed. -
isPickedUp
boolean isPickedUp
Holds whether the ShoppingCartIngredient has been picked up.
-
-
-
-
Package com.xffffff.wellfed.storage
-
Class com.xffffff.wellfed.storage.StorageIngredient extends Ingredient implements Serializable
-
Serialized Fields
-
bestBefore
java.util.Date bestBefore
The best before date of the ingredient in the storage. -
location
java.lang.String location
The location of the ingredient in the storage. -
storageId
java.lang.String storageId
The id of the storage ingredient.
-
-
-