private List<Beverage> beverages;
public JavascriptExampleImpl() {
beverages = new ArrayList<Beverage>();
Ingredient chalk = new Ingredient();
chalk.setName("chalk");
chalk.setCategory(Category.Mineral);
Ingredient broccoli = new Ingredient();
broccoli.setName("broccoli");
broccoli.setCategory(Category.Vegetable);
Ingredient locust = new Ingredient();
locust.setName("locust");
locust.setCategory(Category.Animal);
Beverage b = new Beverage();
b.setName("broccoli shake");
b.setProof(20);
Ingredient[] ingredients;