...
Code Block | ||
---|---|---|
| ||
public interface RecipeVersion extends MediaItemArticleVersion { public String getName(); public String getDescription(); public Locale getLanguage(); public Country getCountry(); public List<Ingredient> getIngredients(); } public interface Country { public String getName(); public String getCapital(); public String getMotto(); } public interface Ingredient { public String getName(); } |
...