373839404142434445464748
{ private final int[] ITEM_IDS; public Recipes() { RecipeController rc = RecipeController.getInstance(); ITEM_IDS = new int[rc.getRecipesCount()]; for (int i = 0; i < rc.getRecipesCount(); i++) { ITEM_IDS[i] = rc.getRecipeList(i).getRecipeId(); } }