Searched refs:mRecipe (Results 1 – 2 of 2) sorted by relevance
33 private Recipe mRecipe; field in RecipeService61 mRecipe = Recipe.fromBundle(intent.getBundleExtra(Constants.EXTRA_RECIPE)); in createNotification()64 int stepCount = mRecipe.recipeSteps.size(); in createNotification()67 Recipe.RecipeStep recipeStep = mRecipe.recipeSteps.get(i); in createNotification()80 if (mRecipe.recipeImage != null) { in createNotification()82 AssetUtils.loadBitmapAsset(this, mRecipe.recipeImage), in createNotification()86 builder.setContentTitle(mRecipe.titleText); in createNotification()87 builder.setContentText(mRecipe.summaryText); in createNotification()
40 private Recipe mRecipe; field in RecipeActivity89 mRecipe = Recipe.fromJson(this, jsonObject); in loadRecipe()90 if (mRecipe != null) { in loadRecipe()91 displayRecipe(mRecipe); in loadRecipe()135 intent.putExtra(Constants.EXTRA_RECIPE, mRecipe.toBundle()); in startCooking()